Home
last modified time | relevance | path

Searched refs:rem (Results 1 – 25 of 48) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/buildbot/
Dexternal-common.bat1 @rem Common file shared between external.bat and external-amd64.bat. Responsible for
2 @rem fetching external components into the root\.. buildbot directories.
5 @rem XXX: If you need to force the buildbots to start from a fresh environment, uncomment
6 @rem the following, check it in, then check it out, comment it out, then check it back in.
7 @rem if exist bzip2-1.0.5 rd /s/q bzip2-1.0.5
8 @rem if exist tcltk rd /s/q tcltk
9 @rem if exist tcltk64 rd /s/q tcltk64
10 @rem if exist tcl8.4.12 rd /s/q tcl8.4.12
11 @rem if exist tcl8.4.16 rd /s/q tcl8.4.16
12 @rem if exist tcl-8.4.18.1 rd /s/q tcl-8.4.18.1
[all …]
Dbuildmsi.bat1 @rem Used by the buildbot "buildmsi" step.
4 @rem build release versions of things
7 @rem build Python
10 @rem build the documentation
14 @rem build the MSI file
Dexternal.bat1 @rem Fetches (and builds if necessary) external dependencies
3 @rem Assume we start inside the Python source directory
8 @rem all and install need to be separate invocations, otherwise nmakehlp is not found on install
Dexternal-amd64.bat1 @rem Fetches (and builds if necessary) external dependencies
3 @rem Assume we start inside the Python source directory
Dtest.bat1 @rem Used by the buildbot "test" step.
/device/linaro/bootloader/edk2/ArmPkg/Library/CompilerIntrinsicsLib/Arm/
Dudivmoddi4.c67 __udivmoddi4 (UINT64 a, UINT64 b, UINT64* rem) in __udivmoddi4() argument
92 if (rem) in __udivmoddi4()
93 *rem = n.low % d.low; in __udivmoddi4()
99 if (rem) in __udivmoddi4()
100 *rem = n.low; in __udivmoddi4()
111 if (rem) in __udivmoddi4()
112 *rem = n.high % d.low; in __udivmoddi4()
121 if (rem) in __udivmoddi4()
125 *rem = r.all; in __udivmoddi4()
134 if (rem) in __udivmoddi4()
[all …]
/device/google/contexthub/firmware/lib/builtins/
Dudivmoddi4.c24 __udivmoddi4(du_int a, du_int b, du_int* rem) in __udivmoddi4() argument
44 if (rem) in __udivmoddi4()
45 *rem = n.s.low % d.s.low; in __udivmoddi4()
52 if (rem) in __udivmoddi4()
53 *rem = n.s.low; in __udivmoddi4()
65 if (rem) in __udivmoddi4()
66 *rem = n.s.high % d.s.low; in __udivmoddi4()
76 if (rem) in __udivmoddi4()
80 *rem = r.all; in __udivmoddi4()
90 if (rem) in __udivmoddi4()
[all …]
Ddivmoddi4.c20 __divmoddi4(di_int a, di_int b, di_int* rem) in __divmoddi4() argument
23 *rem = a - (d*b); in __divmoddi4()
Dint_lib.h41 di_int __divmoddi4(di_int a, di_int b, di_int* rem);
42 du_int __udivmoddi4(du_int a, du_int b, du_int* rem);
/device/linaro/bootloader/arm-trusted-firmware/common/
Dtf_printf.c41 int i = 0 , rem; in unsigned_num_print() local
44 rem = unum % radix; in unsigned_num_print()
45 if (rem < 0xa) in unsigned_num_print()
46 num_buf[i++] = '0' + rem; in unsigned_num_print()
48 num_buf[i++] = 'a' + (rem - 0xa); in unsigned_num_print()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/
Dgenwincodecs.bat1 @rem Recreate some python charmap codecs from the Windows function
2 @rem MultiByteToWideChar.
6 @rem Arabic DOS code page
/device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
DXdiv.c38 r.rem = (int)bigrem; in div()
54 r.rem = (long)bigrem; in ldiv()
73 r.rem = (long long)bigrem; in lldiv()
/device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
D7zStream.c116 size_t rem = p->size - p->pos; in LookToRead_Read() local
117 if (rem == 0) in LookToRead_Read()
119 if (rem > *size) in LookToRead_Read()
120 rem = *size; in LookToRead_Read()
121 memcpy(buf, p->buf + p->pos, rem); in LookToRead_Read()
122 p->pos += rem; in LookToRead_Read()
123 *size = rem; in LookToRead_Read()
DLzmaDec.c389 SizeT rem = limit - dicPos; in LzmaDec_DecodeReal() local
390 unsigned curLen = ((rem < len) ? (unsigned)rem : len); in LzmaDec_DecodeReal()
469 UInt32 rem = p->prop.dicSize - p->processedPos; in LzmaDec_DecodeReal2() local
470 if (limit - p->dicPos > rem) in LzmaDec_DecodeReal2()
471 limit2 = p->dicPos + rem; in LzmaDec_DecodeReal2()
814 unsigned rem = p->tempBufSize, lookAhead = 0; in LzmaDec_DecodeToDic() local
815 while (rem < LZMA_REQUIRED_INPUT_MAX && lookAhead < inSize) in LzmaDec_DecodeToDic()
816 p->tempBuf[rem++] = src[lookAhead++]; in LzmaDec_DecodeToDic()
817 p->tempBufSize = rem; in LzmaDec_DecodeToDic()
818 if (rem < LZMA_REQUIRED_INPUT_MAX || checkEndMarkNow) in LzmaDec_DecodeToDic()
[all …]
/device/linaro/bootloader/edk2/StdLib/LibC/Main/Arm/
Dint_lib.h98 COMPILER_RT_ABI su_int __udivmodsi4(su_int a, su_int b, su_int* rem);
99 COMPILER_RT_ABI du_int __udivmoddi4(du_int a, du_int b, du_int* rem);
102 COMPILER_RT_ABI tu_int __udivmodti4(tu_int a, tu_int b, tu_int* rem);
/device/linaro/bootloader/edk2/StdLib/LibC/Time/
DTime.c100 time_t /*INTN*/ rem; in timesub() local
136 rem = *timep % SECSPERDAY; in timesub()
137 rem += (offset - corr); in timesub()
138 while (rem < 0) { in timesub()
139 rem += SECSPERDAY; in timesub()
142 while (rem >= SECSPERDAY) { in timesub()
143 rem -= SECSPERDAY; in timesub()
146 tmp->tm_hour = (int) (rem / SECSPERHOUR); in timesub()
147 rem = rem % SECSPERHOUR; in timesub()
148 tmp->tm_min = (int) (rem / SECSPERMIN); in timesub()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Dadler32.c143 unsigned rem; local
151 rem = (unsigned)len2;
153 sum2 = rem * sum1;
156 sum2 += ((adler1 >> 16) & 0xffff) + ((adler2 >> 16) & 0xffff) + BASE - rem;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Dadler32.c135 unsigned rem; local
138 rem = (unsigned)(len2 % BASE);
140 sum2 = rem * sum1;
143 sum2 += ((adler1 >> 16) & 0xffff) + ((adler2 >> 16) & 0xffff) + BASE - rem;
/device/linaro/bootloader/edk2/StdLib/Include/
Dstdlib.h136 int rem; /**< remainder */ member
142 long rem; member
148 long long rem; member
/device/linaro/bootloader/arm-trusted-firmware/include/stdlib/
Dstdlib.h54 int rem; /* remainder */ member
59 long rem; member
121 long long rem; member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dlongobject.c1298 twodigits rem = 0; in inplace_divrem1() local
1305 rem = (rem << PyLong_SHIFT) | *--pin; in inplace_divrem1()
1306 *--pout = hi = (digit)(rem / n); in inplace_divrem1()
1307 rem -= (twodigits)hi * n; in inplace_divrem1()
1309 return (digit)rem; in inplace_divrem1()
1340 digit *pout, *pin, rem, tenpow; in long_to_decimal_string() local
1405 rem = pout[size-1]; in long_to_decimal_string()
1406 while (rem >= tenpow) { in long_to_decimal_string()
1424 rem = pout[i]; in long_to_decimal_string()
1426 *--p = '0' + rem % 10; in long_to_decimal_string()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
Dlongobject.c1298 twodigits rem = 0; in inplace_divrem1() local
1305 rem = (rem << PyLong_SHIFT) | *--pin; in inplace_divrem1()
1306 *--pout = hi = (digit)(rem / n); in inplace_divrem1()
1307 rem -= (twodigits)hi * n; in inplace_divrem1()
1309 return (digit)rem; in inplace_divrem1()
1340 digit *pout, *pin, rem, tenpow; in long_to_decimal_string() local
1405 rem = pout[size-1]; in long_to_decimal_string()
1406 while (rem >= tenpow) { in long_to_decimal_string()
1424 rem = pout[i]; in long_to_decimal_string()
1426 *--p = '0' + rem % 10; in long_to_decimal_string()
[all …]
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
DLzmaDec.c408 SizeT rem = limit - dicPos; in LzmaDec_DecodeReal() local
409 unsigned curLen = ((rem < len) ? (unsigned)rem : len); in LzmaDec_DecodeReal()
488 UInt32 rem = p->prop.dicSize - p->processedPos; in LzmaDec_DecodeReal2() local
489 if (limit - p->dicPos > rem) in LzmaDec_DecodeReal2()
490 limit2 = p->dicPos + rem; in LzmaDec_DecodeReal2()
832 unsigned rem = p->tempBufSize, lookAhead = 0; in LzmaDec_DecodeToDic() local
833 while (rem < LZMA_REQUIRED_INPUT_MAX && lookAhead < inSize) in LzmaDec_DecodeToDic()
834 p->tempBuf[rem++] = src[lookAhead++]; in LzmaDec_DecodeToDic()
835 p->tempBufSize = rem; in LzmaDec_DecodeToDic()
836 if (rem < LZMA_REQUIRED_INPUT_MAX || checkEndMarkNow) in LzmaDec_DecodeToDic()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
DLzmaDec.c408 SizeT rem = limit - dicPos; in LzmaDec_DecodeReal() local
409 unsigned curLen = ((rem < len) ? (unsigned)rem : len); in LzmaDec_DecodeReal()
488 UInt32 rem = p->prop.dicSize - p->processedPos; in LzmaDec_DecodeReal2() local
489 if (limit - p->dicPos > rem) in LzmaDec_DecodeReal2()
490 limit2 = p->dicPos + rem; in LzmaDec_DecodeReal2()
832 unsigned rem = p->tempBufSize, lookAhead = 0; in LzmaDec_DecodeToDic() local
833 while (rem < LZMA_REQUIRED_INPUT_MAX && lookAhead < inSize) in LzmaDec_DecodeToDic()
834 p->tempBuf[rem++] = src[lookAhead++]; in LzmaDec_DecodeToDic()
835 p->tempBufSize = rem; in LzmaDec_DecodeToDic()
836 if (rem < LZMA_REQUIRED_INPUT_MAX || checkEndMarkNow) in LzmaDec_DecodeToDic()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/
Dlongobject.c1312 twodigits rem = 0; in inplace_divrem1() local
1319 rem = (rem << PyLong_SHIFT) | *--pin; in inplace_divrem1()
1320 *--pout = hi = (digit)(rem / n); in inplace_divrem1()
1321 rem -= (twodigits)hi * n; in inplace_divrem1()
1323 return (digit)rem; in inplace_divrem1()
1354 digit *pout, *pin, rem, tenpow; in long_to_decimal_string() local
1419 rem = pout[size-1]; in long_to_decimal_string()
1420 while (rem >= tenpow) { in long_to_decimal_string()
1438 rem = pout[i]; in long_to_decimal_string()
1440 *--p = '0' + rem % 10; in long_to_decimal_string()
[all …]

12