Home
last modified time | relevance | path

Searched refs:big (Results 1 – 25 of 46) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_format.py98 big = 123456789012345678901234567890L
99 testboth("%d", big, "123456789012345678901234567890")
100 testboth("%d", -big, "-123456789012345678901234567890")
101 testboth("%5d", -big, "-123456789012345678901234567890")
102 testboth("%31d", -big, "-123456789012345678901234567890")
103 testboth("%32d", -big, " -123456789012345678901234567890")
104 testboth("%-32d", -big, "-123456789012345678901234567890 ")
105 testboth("%032d", -big, "-0123456789012345678901234567890")
106 testboth("%-032d", -big, "-123456789012345678901234567890 ")
107 testboth("%034d", -big, "-000123456789012345678901234567890")
[all …]
Dtest_struct.py139 for fmt, arg, big, lil, asy in tests:
140 for (xfmt, exp) in [('>'+fmt, big), ('!'+fmt, big), ('<'+fmt, lil),
141 ('='+fmt, ISBIGENDIAN and big or lil)]:
403 big = (1 << 24) - 1
404 big = math.ldexp(big, 127 - 23)
405 packed = struct.pack(">f", big)
407 self.assertEqual(big, unpacked)
410 big = (1 << 25) - 1
411 big = math.ldexp(big, 127 - 24)
412 self.assertRaises(OverflowError, struct.pack, ">f", big)
Dtest_unicode.py1319 big = u"23098475029384702983476098230754973209482573"
1320 self.assertRaises(ValueError, (u"{" + big + u"}").format)
1321 self.assertRaises(ValueError, (u"{[" + big + u"]}").format, [0])
Dtest_datetime.py929 big = self.theclass.max - self.theclass.min
931 n = (big.days*24*3600 + big.seconds)*1000000 + big.microseconds
934 self.assertEqual(big, justasbig)
935 self.assertEqual(self.theclass.min + big, self.theclass.max)
936 self.assertEqual(self.theclass.max - big, self.theclass.min)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/test/data/
Dmsg_14.txt17 I'm sorry but I'm using a drainbread ISP, which although big and
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/set/
Dset.c158 set *big; local
165 if (b.n > c.n) {big= &b; m=b.n; n=c.n;} else {big= &c; m=c.n; n=b.n;}
176 p = &(big->setword[n]);
177 endp = &(big->setword[m]);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dsets.py213 little, big = self, other
215 little, big = other, self
216 common = ifilter(big._data.__contains__, little)
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
Dparser.dlg911 fatal("$i attrib ref too big");
932 fatal("$i.field attrib ref too big");
955 if (strlen(zzbegexpr)>(size_t)85) fatal("$i.j attrib ref too big");
958 fatalFL("i of $i.j attrib ref too big",
965 fatalFL("j of $i.j attrib ref too big",
993 "$retval attrib ref too big");
1059 fatal("#i AST ref too big");
Dmrhoist.c1107 int MR_tree_equ(Tree *big, Tree *small) { argument
1109 int MR_tree_equ(big,small)
1110 Tree *big;
1120 if (small == NULL && big == NULL) return 1;
1122 if (big == NULL) return 0;
1127 return MR_tree_equ(big,small->down);
1129 if (big->token == ALT) {
1130 require(big->right == NULL,
1132 return MR_tree_equ(big->down,small);
1138 for (b=big; b != NULL; b=b->right) {
[all …]
Dantlr.g307 fatal("$i attrib ref too big");
324 fatal("$i.field attrib ref too big");
343 if (strlen(zzbegexpr)>(size_t)85) fatal("$i.j attrib ref too big");
346 fatalFL("i of $i.j attrib ref too big",
353 fatalFL("j of $i.j attrib ref too big",
378 "$retval attrib ref too big");
426 fatal("#i AST ref too big");
/device/generic/goldfish-opengl/system/renderControl_enc/
DREADME18 if buffer is NULL or the bufferSize is not big enough the return value
34 rcGetNumConfigs. if bufSize is not big enough then the negative number
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/
DVfrSyntax.g1430 …_PCATCH (VFR_RETURN_INVALID_PARAMETER, N1->getLine(), "INT8 type can't big than 0x7F, small than -…
1434 …_PCATCH (VFR_RETURN_INVALID_PARAMETER, N1->getLine(), "INT8 type can't big than 0x7F, small than -…
1447 …_PCATCH (VFR_RETURN_INVALID_PARAMETER, N1->getLine(), "INT16 type can't big than 0x7FFF, small tha…
1451 …_PCATCH (VFR_RETURN_INVALID_PARAMETER, N1->getLine(), "INT16 type can't big than 0x7FFF, small tha…
1464 …_PCATCH (VFR_RETURN_INVALID_PARAMETER, N1->getLine(), "INT32 type can't big than 0x7FFFFFFF, small…
1468 …_PCATCH (VFR_RETURN_INVALID_PARAMETER, N1->getLine(), "INT32 type can't big than 0x7FFFFFFF, small…
1481 …_PCATCH (VFR_RETURN_INVALID_PARAMETER, N1->getLine(), "INT64 type can't big than 0x7FFFFFFFFFFFFFF…
1485 …_PCATCH (VFR_RETURN_INVALID_PARAMETER, N1->getLine(), "INT64 type can't big than 0x7FFFFFFFFFFFFFF…
2447 …R, I->getLine(), "INT64 type minimum can't small than -0x8000000000000000, big than 0x7FFFFFFFFFFF…
2451 …R, I->getLine(), "INT64 type minimum can't small than -0x8000000000000000, big than 0x7FFFFFFFFFFF…
[all …]
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/DOC/
Dlzma-sdk.txt208 Memory speed has no big meaning. But if your CPU has small data cache,
248 Usually big number gives a little bit better compression ratio
252 Sometimes lc=4 gives gain for big files.
Dlzma-history.txt91 - Speed optimization in CRC code for big-endian CPUs.
/device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/DOC/
Dlzma-sdk.txt208 Memory speed has no big meaning. But if your CPU has small data cache,
248 Usually big number gives a little bit better compression ratio
252 Sometimes lc=4 gives gain for big files.
Dlzma-history.txt91 - Speed optimization in CRC code for big-endian CPUs.
/device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/DOC/
Dlzma-sdk.txt208 Memory speed has no big meaning. But if your CPU has small data cache,
248 Usually big number gives a little bit better compression ratio
252 Sometimes lc=4 gives gain for big files.
Dlzma-history.txt91 - Speed optimization in CRC code for big-endian CPUs.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
DREADME59 rgrep.py Reverse grep through a file (useful for big logfiles)
/device/linaro/bootloader/edk2/ArmVirtPkg/
DArmVirtQemuFvMain.fdf.inc29 NumBlocks = 0 # This FV gets compressed so make it just big enough
DArmVirtXen.fdf109 NumBlocks = 0 # This FV gets compressed so make it just big enough
/device/linaro/bootloader/edk2/BeagleBoardPkg/
DBeagleBoardPkg.fdf79 NumBlocks = 0 # This FV gets compressed so make it just big enough
/device/linaro/bootloader/OpenPlatformPkg/Platforms/ARM/VExpress/
DArmVExpress-CTA15-A7.fdf51 NumBlocks = 0 # This FV gets compressed so make it just big enough
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
DFAQ39 that avail_out is big enough to allow processing all pending input.
193 25. Will zlib work on a big-endian or little-endian architecture, and can I
DChangeLog132 - Fix a big fat bug in inftrees.c that prevented decoding valid
351 - Use malloc() instead of calloc() in zutil.c if int big enough
468 - increase size of I/O buffers in minigzip.c and gzio.c (not a big gain
500 - fix gzgetc and gzputc for big endian systems (Markus Oberhumer)
826 - don't allocate big arrays in the stack (for MSDOS)

12