Searched refs:remainder (Results 26 - 50 of 146) sorted by relevance

123456

/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DWidthCache.h64 bool remainder = length & 1; local
75 if (remainder) {
H A DColor.h209 uint16_t remainder = value - (approximation * 255) + 1; local
210 return approximation + (remainder >> 8);
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DScriptFormatterWorker.js59 var remainder = totalLength % chunkSize;
60 var partialLength = totalLength - remainder;
61 return (partialLength / chunkSize) + (remainder ? 1 : 0);
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dcaniter.cpp456 Hashtable remainder(status);
457 remainder.setValueDeleter(uprv_deleteUObject);
458 if (extract(&remainder, cp2, segment, segLen, i, status) == NULL) {
467 const UHashElement *ne = remainder.nextElement(el);
481 ne = remainder.nextElement(el);
496 * If so, take the remainder, and return the equivalents
561 return fillinResult; // succeed, but no remainder
/macosx-10.9.5/rsync-42/rsync/
H A Dsender.c85 (double)s->count, (long)s->blength, (long)s->remainder);
90 if (s->remainder)
91 s->flength -= s->blength - s->remainder;
108 if (i == s->count-1 && s->remainder != 0)
109 s->sums[i].len = s->remainder;
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DDecimal.cpp170 uint32_t remainder = 0; local
172 const uint64_t work = makeUInt64(dividend[i], remainder);
173 remainder = static_cast<uint32_t>(work % divisor);
491 uint64_t remainder = lhs.m_data.coefficient();
495 while (remainder < divisor) {
496 remainder *= 10;
500 result += remainder / divisor;
501 remainder %= divisor;
502 if (!remainder)
506 if (remainder > diviso
[all...]
/macosx-10.9.5/sudo-72/src/
H A Dsudoreplay.c430 size_t remainder = nread; local
438 remainder--;
440 while ((ep = memchr(ep + 1, '\n', remainder)) != NULL) {
443 remainder = (size_t)(&buf[nread - 1] - ep);
460 remainder -= linelen;
542 size_t count, remainder, nbytes = 0; local
552 remainder = nbytes - nwritten;
553 if (remainder == 0)
560 if (count == remainder) {
565 if (count > remainder) {
[all...]
/macosx-10.9.5/groff-38/groff/src/utils/tfmtodit/
H A Dtfmtodit.cpp73 unsigned char remainder; member in struct:char_info_word
80 unsigned char remainder; member in struct:lig_kern_command
139 i = t->char_info[c - t->bc].remainder;
142 + t->lig_kern[i].remainder);
150 + t->lig_kern[i].remainder];
177 int i = char_info[c1 - bc].remainder;
179 i = 256*lig_kern[i].op_byte + lig_kern[i].remainder;
188 *cp = lig_kern[i].remainder;
350 char_info[i].remainder = *ptr++;
364 lig_kern[i].remainder
[all...]
/macosx-10.9.5/ruby-104/ruby/test/ruby/
H A Dtest_bignum.rb71 assert_equal(7, a.remainder(b))
72 assert_equal(7, a.remainder(-b))
73 assert_equal(-7, (-a).remainder(b))
74 assert_equal(-7, (-a).remainder(-b))
405 assert_equal(0, T32.remainder(1))
406 assert_raise(TypeError) { T32.remainder("foo") }
/macosx-10.9.5/mDNSResponder-522.92.1/mDNSShared/
H A Ddnssd_clientlib.c252 unsigned long keylen, itemlen, remainder; local
256 remainder = (unsigned long)((txtRec->buffer + txtRec->datalen) - (item + itemlen));
258 memmove(item, item + itemlen, remainder);
/macosx-10.9.5/CPANInternal-140/XML-Parser/Parser/Style/
H A DTree.pm69 (possibly empty) hash reference containing attributes. The remainder of
/macosx-10.9.5/bc-21/bc/dc/
H A Dnumeric.c124 /* divide two dc_nums, place quotient into *quotient and remainder
125 * into *remainder;
129 dc_divrem DC_DECLARG((a, b, kscale, quotient, remainder))
134 dc_num *remainder DC_DECLEND
137 bc_init_num((bc_num *)remainder);
139 (bc_num *)quotient, (bc_num *)remainder, kscale)){
158 fprintf(stderr, "%s: remainder by zero\n", progname);
176 fprintf(stderr, "%s: remainder by zero\n", progname);
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/tr1/
H A Dmath.h83 using std::tr1::remainder;
/macosx-10.9.5/xnu-2422.115.4/bsd/dev/vn/
H A Dvn.c303 u_int32_t remainder; local
311 remainder = block_remainder(offset, blocksize);
314 block_round(resid + remainder, blocksize),
323 this_offset = (off_t)this_block_number * blocksize + remainder;
325 this_resid = this_block_count * blocksize - remainder;
396 u_int32_t remainder; local
404 remainder = block_remainder(offset, blocksize);
405 resid_block_count = block_round(resid + remainder, blocksize);
407 if (remainder > 0
436 shadow_block_number * blocksize + remainder); local
[all...]
/macosx-10.9.5/CPANInternal-140/Crypt-OpenSSL-Bignum/
H A DBignum.xs213 BIGNUM* remainder;
216 croak( "usage: $bn->add( $bn2, $ctx, [, $quotient [, $remainder ] ] )" );
218 remainder = ( items < 5 ) ? BN_new() : sv2bn( ST(4) );
219 checkOpenSslCall( BN_div( quotient, remainder, a, b, ctx ) );
221 ST(1) = ( (items < 5 ) ? proto_obj( remainder ) : ST(4) );
/macosx-10.9.5/CPANInternal-140/Crypt-OpenSSL-Bignum-0.04/
H A DBignum.xs213 BIGNUM* remainder;
216 croak( "usage: $bn->add( $bn2, $ctx, [, $quotient [, $remainder ] ] )" );
218 remainder = ( items < 5 ) ? BN_new() : sv2bn( ST(4) );
219 checkOpenSslCall( BN_div( quotient, remainder, a, b, ctx ) );
221 ST(1) = ( (items < 5 ) ? proto_obj( remainder ) : ST(4) );
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/cairo/
H A DGraphicsContextCairo.cpp257 int remainder = distance % patternWidth; local
258 int numSegments = (distance - remainder) / patternWidth;
265 if (remainder)
269 if (remainder)
270 return (patternWidth - remainder) + (remainder / 2);
275 if (remainder)
276 return (patternWidth - remainder) / 2.f;
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/cpu/arm/filters/
H A DFEBlendNEON.h42 uint16x8_t remainder = vaddq_u16(vsubq_u16(num, vmulq_u16(sixteenConst255, quotient)), sixteenConstOne); local
43 return vaddq_u16(quotient, vshrq_n_u16(remainder, 8));
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DLayoutState.cpp289 LayoutUnit remainder = roundToInt(pageLogicalTop - firstLineTopWithLeading) % roundToInt(gridLineHeight); local
290 LayoutUnit paginationDelta = gridLineHeight - remainder;
/macosx-10.9.5/tcl-102/tcl_ext/ffidl/ffidl/demos/
H A Dlibm.tcl82 {double remainder(double, double)}
/macosx-10.9.5/tcl-102/tk/tk/generic/ttk/
H A DttkPanedwindow.c300 * This doesn't distribute the remainder pixels as evenly as it could
310 int difference, delta, remainder, pos, i; local
328 remainder = difference % totalWeight;
329 if (remainder < 0) {
331 remainder += totalWeight;
334 delta = remainder = 0;
336 /* ASSERT: 0 <= remainder < totalWeight */
346 if (weight > remainder)
347 weight = remainder;
348 remainder
[all...]
/macosx-10.9.5/IOFireWireFamily-455.4.0/IOFireWireLib.CFPlugInProj/
H A DIOFireWireLibDCLCommandPool.cpp149 UInt32 remainder ; local
160 remainder = blockSize - inSize ;
167 allocatedBlock = (DCLCommand*) (foundFreeBlock + remainder) ;
172 if (remainder > 0)
178 CFArraySetValueAtIndex(mFreeBlockSizes, index, (const void*) remainder) ;
/macosx-10.9.5/apache-786.1/httpd/modules/metadata/
H A Dmod_headers.c565 const char *remainder; local
575 remainder = value + pmatch[0].rm_eo;
578 remainder = process_regexp(hdr, value + pmatch[0].rm_eo, pool);
579 diffsz += strlen(remainder) - strlen(value + pmatch[0].rm_eo);
584 strcat(ret, remainder);
/macosx-10.9.5/smb-697.95.1/kernel/smbfs/
H A Dsmbfs_io.c468 user_ssize_t remainder; local
479 /* subtract requestSize from uio_resid and save remainder */
480 remainder = uio_resid(uiop) - requestsize;
488 uio_setresid(uiop, (uio_resid(uiop) + remainder));
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/math/
H A Dpolynomials.tcl387 foreach {quotient remainder} [DivRemPolyn $polyn1 $polyn2] {break}
392 # Divide two polynomials and return the remainder
427 foreach {quotient remainder} [DivRemPolyn $polyn1 $polyn2] {break}
428 return $remainder
432 # Divide two polynomials and return the quotient and remainder

Completed in 389 milliseconds

123456