/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/buildbot/ |
D | external-common.bat | 1 @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 …]
|
D | buildmsi.bat | 1 @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
|
D | external.bat | 1 @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
|
D | external-amd64.bat | 1 @rem Fetches (and builds if necessary) external dependencies 3 @rem Assume we start inside the Python source directory
|
D | test.bat | 1 @rem Used by the buildbot "test" step.
|
/device/linaro/bootloader/edk2/ArmPkg/Library/CompilerIntrinsicsLib/Arm/ |
D | udivmoddi4.c | 67 __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/ |
D | udivmoddi4.c | 24 __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 …]
|
D | divmoddi4.c | 20 __divmoddi4(di_int a, di_int b, di_int* rem) in __divmoddi4() argument 23 *rem = a - (d*b); in __divmoddi4()
|
D | int_lib.h | 41 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/ |
D | tf_printf.c | 41 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/ |
D | genwincodecs.bat | 1 @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/ |
D | Xdiv.c | 38 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/ |
D | 7zStream.c | 116 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()
|
D | LzmaDec.c | 389 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/ |
D | int_lib.h | 98 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/ |
D | Time.c | 100 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/ |
D | adler32.c | 143 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/ |
D | adler32.c | 135 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/ |
D | stdlib.h | 136 int rem; /**< remainder */ member 142 long rem; member 148 long long rem; member
|
/device/linaro/bootloader/arm-trusted-firmware/include/stdlib/ |
D | stdlib.h | 54 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/ |
D | longobject.c | 1298 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/ |
D | longobject.c | 1298 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/ |
D | LzmaDec.c | 408 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/ |
D | LzmaDec.c | 408 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/ |
D | longobject.c | 1312 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 …]
|