Searched refs:remainder (Results 1 - 25 of 45) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dcalc64.h12 * result is returned and the remainder stored in the variable
13 * referenced by remainder (data type long *). In contrast to the
17 #define div_long_long_rem(dividend, divisor, remainder) \
18 do_div_llr((dividend), divisor, remainder)
21 const long divisor, long *remainder)
25 *(remainder) = do_div(result, divisor);
36 const long divisor, long *remainder)
41 res = -div_long_long_rem(-dividend, divisor, remainder);
42 *remainder = -(*remainder);
20 do_div_llr(const long long dividend, const long divisor, long *remainder) argument
35 div_long_long_rem_signed(const long long dividend, const long divisor, long *remainder) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc/lib/
H A Dudiv.S9 * Division and remainder, from Appendix E of the Sparc Version 8
30 * R the remainder so far, initially the dividend
170 ! remainder is positive
175 ! remainder is positive
180 ! remainder is positive
185 ! remainder is positive
191 ! remainder is negative
197 ! remainder is negative
202 ! remainder is positive
208 ! remainder i
[all...]
H A Durem.S8 * Division and remainder, from Appendix E of the Sparc Version 8
29 * R the remainder so far, initially the dividend
168 ! remainder is positive
173 ! remainder is positive
178 ! remainder is positive
183 ! remainder is positive
189 ! remainder is negative
195 ! remainder is negative
200 ! remainder is positive
206 ! remainder i
[all...]
H A Drem.S9 * Division and remainder, from Appendix E of the Sparc Version 8
30 * R the remainder so far, initially the dividend
185 ! remainder is positive
190 ! remainder is positive
195 ! remainder is positive
200 ! remainder is positive
207 ! remainder is negative
213 ! remainder is negative
218 ! remainder is positive
224 ! remainder i
[all...]
H A Dsdiv.S9 * Division and remainder, from Appendix E of the Sparc Version 8
30 * R the remainder so far, initially the dividend
185 ! remainder is positive
190 ! remainder is positive
195 ! remainder is positive
200 ! remainder is positive
206 ! remainder is negative
212 ! remainder is negative
217 ! remainder is positive
223 ! remainder i
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/utilities/
H A Dutmath.c62 * out_remainder - Pointer to where the remainder is returned
68 * 32-bit remainder.
92 * The quotient is 64 bits, the remainder is always 32 bits,
119 * out_remainder - Pointer to where the remainder is returned
135 union uint64_overlay remainder; local
158 remainder.part.hi = 0;
161 * The quotient is 64 bits, the remainder is always 32 bits,
167 quotient.part.lo, remainder.part.lo);
198 * The 64-bit remainder must be generated.
205 remainder
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/executer/
H A Dexutils.c406 u32 remainder; local
414 (void)acpi_ut_short_divide(value, 10, &value, &remainder);
415 out_string[count - 1] = (char)('0' + remainder);
H A Dexconvrt.c296 u32 remainder; local
322 remainder = 0;
331 &remainder);
336 if (remainder != 0) {
341 string[k] = (u8) (ACPI_ASCII_ZERO + remainder);
H A Dexregion.c81 u32 remainder; local
117 &remainder);
118 if (remainder != 0) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/makefiles/
H A DRelPath.mk42 # with '..', then appending the remainder of $3 (after common
56 # If $1 prefixes $2, the result is the remainder of $2 after
57 # removing $1. If $2 prefixes $1, the result is the remainder
59 # remainder converted to '..'.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/lib/
H A Ddiv64.S7 * On exit, r3 contains the remainder.
53 mullw r10,r0,r4 # and get the remainder
58 mr r3,r6 # return the remainder in r3
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/boot/lib/
H A Ddiv64.S7 * On exit, r3 contains the remainder.
52 mullw r10,r0,r4 # and get the remainder
57 mr r3,r6 # return the remainder in r3
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/lib/
H A Ddiv64.S7 * On exit, r3 contains the remainder.
52 mullw r10,r0,r4 # and get the remainder
57 mr r3,r6 # return the remainder in r3
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/boot/
H A Ddiv64.S7 * On exit, r3 contains the remainder.
52 mullw r10,r0,r4 # and get the remainder
57 mr r3,r6 # return the remainder in r3
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/
H A Dasiliantfb.c120 unsigned remainder; local
125 remainder = 1000000 % pixclock;
126 Ftarget = 1000000 * ratio + (1000000 * remainder) / pixclock;
134 remainder = Ftarget % Fref;
139 unsigned m = n * ratio + (n * remainder) / Fref;
229 unsigned long Ftarget, ratio, remainder; local
232 remainder = 1000000 % var->pixclock;
233 Ftarget = 1000000 * ratio + (1000000 * remainder) / var->pixclock;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/adfs/
H A Ddir_fplus.c105 unsigned int buffer, partial, remainder; local
117 remainder = len - partial;
120 memcpy(c + partial, dir->bh[buffer + 1]->b_data, remainder);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/sunrpc/
H A Dxprtsock.c321 unsigned int remainder; local
324 remainder = xdr->page_len - base;
329 unsigned int len = min_t(unsigned int, PAGE_SIZE - base, remainder);
332 remainder -= len;
333 if (remainder != 0 || more)
336 if (remainder == 0 || err != len)
360 unsigned int remainder = xdr->len - base; local
374 remainder -= len;
375 err = xs_send_kvec(sock, addr, addrlen, &xdr->head[0], base, remainder != 0);
376 if (remainder
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/shared/
H A Dsflash.c541 uint blocksize = 0, mask, cur_offset, cur_length, cur_retlen, remainder; local
571 remainder = blocksize - (offset & mask);
572 if (len < remainder)
575 cur_retlen = remainder;
H A Dccsflash.c573 uint blocksize = 0, mask, cur_offset, cur_length, cur_retlen, remainder; local
602 remainder = blocksize - (offset & mask);
603 if (len < remainder)
606 cur_retlen = remainder;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/aty/
H A Dmach64_gx.c500 u16 remainder, preRemainder; local
533 remainder = tempB % mach64RefFreq;
537 && (remainder <= preRemainder)) {
538 preRemainder = remainder;
740 u16 remainder, preRemainder; local
772 remainder = tempB % mach64RefFreq;
775 && (remainder <= preRemainder)) {
776 preRemainder = remainder;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/lib/
H A Ddiv64.S41 * xh = remainder
114 @ The top part of remainder became zero. If carry is set
138 @ Current remainder is now 1. It is worthless to compare with
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/nfs/
H A Dread.c90 unsigned int remainder = data->args.count - data->res.count; local
95 if (data->res.eof == 0 || remainder == 0)
98 * Note: "remainder" can never be negative, since we check for
105 if (remainder <= pglen) {
106 zero_user_page(*pages, base, remainder, KM_USER0);
111 remainder -= pglen;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/ifpsp060/src/
H A Dilsp.S77 # 0x10(sp) = pointer to location to place quotient/remainder #
80 # 0x10(sp) = points to location of remainder/quotient. #
81 # remainder is in first longword, quotient is in 2nd. #
199 tst.b NDIVIDEND(%a6) # remainder has same sign
278 # The quotient is returned in %d6, remainder in %d5, unless the #
295 # longword of the dividend as (0) remainder (see Knuth) and merely complete
296 # the last two divisions to get a quotient longword and word remainder:
314 swap %d5 # now remainder
355 andi.l &0x0000ffff, %d1 # zero any remainder
429 # add 2nd word to quotient, get the remainder
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/mm/
H A Dhugetlb.c601 int remainder = *length; local
604 while (vaddr < vma->vm_end && remainder) {
624 remainder = 0;
643 --remainder;
645 if (vaddr < vma->vm_end && remainder &&
655 *length = remainder;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/glib/
H A Dgstrfuncs.c2247 * @delimiter. If @max_tokens is reached, the remainder of @string is appended
2268 const gchar *remainder;
2277 remainder = string;
2278 s = strstr (remainder, delimiter);
2288 len = s - remainder;
2290 strncpy (new_string, remainder, len);
2294 remainder = s + delimiter_len;
2295 s = strstr (remainder, delimiter);
2301 string_list = g_slist_prepend (string_list, g_strdup (remainder));
2326 * remainder i
[all...]

Completed in 252 milliseconds

12