/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | traceback.py | 46 def print_tb(tb, limit=None, file=None): argument 56 if limit is None: 58 limit = sys.tracebacklimit 60 while tb is not None and (limit is None or n < limit): 74 def format_tb(tb, limit = None): argument 76 return format_list(extract_tb(tb, limit)) 78 def extract_tb(tb, limit = None): argument 89 if limit is None: 91 limit = sys.tracebacklimit 94 while tb is not None and (limit is None or n < limit): [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | traceback.py | 46 def print_tb(tb, limit=None, file=None): argument 56 if limit is None: 58 limit = sys.tracebacklimit 60 while tb is not None and (limit is None or n < limit): 74 def format_tb(tb, limit = None): argument 76 return format_list(extract_tb(tb, limit)) 78 def extract_tb(tb, limit = None): argument 89 if limit is None: 91 limit = sys.tracebacklimit 94 while tb is not None and (limit is None or n < limit): [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
D | find_recursionlimit.py | 107 limit = 1000 variable 109 check_limit(limit, "test_recurse") 110 check_limit(limit, "test_add") 111 check_limit(limit, "test_repr") 112 check_limit(limit, "test_init") 113 check_limit(limit, "test_getattr") 114 check_limit(limit, "test_getitem") 115 check_limit(limit, "test_cpickle") 116 print "Limit of %d is fine" % limit 117 limit = limit + 100 variable
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptDxe/AArch64/ |
D | CompareMem.S | 38 #define limit x2 macro 62 add limit_wd, limit, #7 80 ands limit, limit, #7 83 lsl limit, limit, #3 // Bits -> bytes. 85 lsl mask, mask, limit 116 add limit, limit, tmp1 // Adjust the limit for the extra. 125 add limit_wd, limit, #7 133 sub limit, limit, #1 138 subs limit, limit, #1
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Arm/ |
D | CompareMem.S | 32 #define limit r2 macro 57 add limit_wd, limit, #3 76 ands limit, limit, #3 79 lsl limit, limit, #3 // Bits -> bytes. 81 lsl mask, mask, limit 112 add limit, limit, tmp1 // Adjust the limit for the extra. 121 add limit_wd, limit, #3 128 sub limit, limit, #1 133 subs limit, limit, #1
|
D | CompareMem.asm | 32 #define limit r2 macro 56 add limit_wd, limit, #3 71 ; Not reached the limit, must have found a diff. 76 ands limit, limit, #3 79 lsl limit, limit, #3 // Bits -> bytes. 81 lsl mask, mask, limit 112 add limit, limit, tmp1 ; Adjust the limit for the extra. 121 add limit_wd, limit, #3 128 sub limit, limit, #1 133 subs limit, limit, #1
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | lmem.c | 47 int limit, const char *what) { in luaM_growaux_() argument 50 if (*size >= limit/2) { /* cannot double it? */ in luaM_growaux_() 51 if (*size >= limit) /* cannot grow even a little? */ in luaM_growaux_() 52 luaG_runerror(L, "too many %s (limit is %d)", what, limit); in luaM_growaux_() 53 newsize = limit; /* still have at least one free place */ in luaM_growaux_()
|
D | lmem.h | 40 #define luaM_growvector(L,v,nelems,size,t,limit,e) \ argument 42 ((v)=cast(t *, luaM_growaux_(L,v,&(size),sizeof(t),limit,e))) 53 size_t size_elem, int limit,
|
/device/linaro/bootloader/edk2/StdLib/PosixLib/Glob/ |
D | glob.c | 192 size_t limit[] = { 0, 0, 0 }; in glob() local 228 return globexp1(patbuf, pglob, limit); in glob() 230 return glob0(patbuf, pglob, limit); in glob() 239 globexp1(const Char *pattern, glob_t *pglob, size_t *limit) in globexp1() argument 249 return glob0(pattern, pglob, limit); in globexp1() 252 if (!globexp2(ptr, pattern, pglob, &rv, limit)) in globexp1() 255 return glob0(pattern, pglob, limit); in globexp1() 266 size_t *limit) in globexp2() argument 311 *rv = glob0(pattern, pglob, limit); in globexp2() 358 *rv = globexp1(patbuf, pglob, limit); in globexp2() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/ |
D | fact.py | 22 limit = sqrt(n+1) 24 while i <= limit: 28 limit = sqrt(n+1)
|
/device/linaro/bootloader/edk2/UefiCpuPkg/ResetVector/Vtf0/Ia16/ |
D | Real16ToFlat32.asm | 61 dw GDT_END - GDT_BASE - 1 ; GDT limit 96 DW 0 ; limit 15:0 100 DB 0 ; limit 19:16, flags 105 DW 0xffff ; limit 15:0 114 DW 0xffff ; limit 15:0 124 DW 0xffff ; limit 15:0
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_xrange.py | 28 def assert_iterators_equal(self, xs, ys, test_id, limit=None): argument 31 if limit is not None: 32 xs = itertools.islice(xs, limit) 33 ys = itertools.islice(ys, limit) 127 self.assert_iterators_equal(iter1, iter2, test_id, limit=100) 136 self.assert_iterators_equal(iter1, iter2, test_id, limit=100)
|
D | test_format.py | 13 def testformat(formatstr, args, output=None, limit=None, overflowok=False): argument 28 if output and limit is None and result != output: 38 elif output and limit is not None and ( 39 len(result)!=len(output) or result[:limit]!=output[:limit]):
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/ |
D | Bra86.c | 22 const Byte *limit = data + size; in x86_Convert() local 23 for (; p < limit; p++) in x86_Convert() 30 if (p >= limit) in x86_Convert()
|
D | LzmaDec.c | 30 #define TREE_DECODE(probs, limit, i) \ argument 31 { i = 1; do { TREE_GET_BIT(probs, i); } while (i < limit); i -= limit; } 65 #define TREE_DECODE_CHECK(probs, limit, i) \ argument 66 { i = 1; do { GET_BIT_CHECK(probs + i, i) } while (i < limit); i -= limit; } 140 static int MY_FAST_CALL LzmaDec_DecodeReal(CLzmaDec *p, SizeT limit, const Byte *bufLimit) in LzmaDec_DecodeReal() argument 461 if ((rem = limit - dicPos) == 0) in LzmaDec_DecodeReal() 496 while (dicPos < limit && buf < bufLimit); in LzmaDec_DecodeReal() 515 static void MY_FAST_CALL LzmaDec_WriteRem(CLzmaDec *p, SizeT limit) in LzmaDec_WriteRem() argument 524 SizeT rem = limit - dicPos; in LzmaDec_WriteRem() 543 static int MY_FAST_CALL LzmaDec_DecodeReal2(CLzmaDec *p, SizeT limit, const Byte *bufLimit) in LzmaDec_DecodeReal2() argument [all …]
|
/device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/ |
D | Bra86.c | 22 const Byte *limit = data + size; in x86_Convert() local 23 for (; p < limit; p++) in x86_Convert() 30 if (p >= limit) in x86_Convert()
|
D | LzmaDec.c | 32 #define TREE_DECODE(probs, limit, i) \ argument 33 { i = 1; do { TREE_GET_BIT(probs, i); } while (i < limit); i -= limit; } 67 #define TREE_DECODE_CHECK(probs, limit, i) \ argument 68 { i = 1; do { GET_BIT_CHECK(probs + i, i) } while (i < limit); i -= limit; } 142 static int MY_FAST_CALL LzmaDec_DecodeReal(CLzmaDec *p, SizeT limit, const Byte *bufLimit) in LzmaDec_DecodeReal() argument 463 if ((rem = limit - dicPos) == 0) in LzmaDec_DecodeReal() 498 while (dicPos < limit && buf < bufLimit); in LzmaDec_DecodeReal() 517 static void MY_FAST_CALL LzmaDec_WriteRem(CLzmaDec *p, SizeT limit) in LzmaDec_WriteRem() argument 526 SizeT rem = limit - dicPos; in LzmaDec_WriteRem() 545 static int MY_FAST_CALL LzmaDec_DecodeReal2(CLzmaDec *p, SizeT limit, const Byte *bufLimit) in LzmaDec_DecodeReal2() argument [all …]
|
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/ |
D | Bra86.c | 22 const Byte *limit = data + size; in x86_Convert() local 23 for (; p < limit; p++) in x86_Convert() 30 if (p >= limit) in x86_Convert()
|
D | LzmaDec.c | 32 #define TREE_DECODE(probs, limit, i) \ argument 33 { i = 1; do { TREE_GET_BIT(probs, i); } while (i < limit); i -= limit; } 67 #define TREE_DECODE_CHECK(probs, limit, i) \ argument 68 { i = 1; do { GET_BIT_CHECK(probs + i, i) } while (i < limit); i -= limit; } 142 static int MY_FAST_CALL LzmaDec_DecodeReal(CLzmaDec *p, SizeT limit, const Byte *bufLimit) in LzmaDec_DecodeReal() argument 463 if ((rem = limit - dicPos) == 0) in LzmaDec_DecodeReal() 498 while (dicPos < limit && buf < bufLimit); in LzmaDec_DecodeReal() 517 static void MY_FAST_CALL LzmaDec_WriteRem(CLzmaDec *p, SizeT limit) in LzmaDec_WriteRem() argument 526 SizeT rem = limit - dicPos; in LzmaDec_WriteRem() 545 static int MY_FAST_CALL LzmaDec_DecodeReal2(CLzmaDec *p, SizeT limit, const Byte *bufLimit) in LzmaDec_DecodeReal2() argument [all …]
|
/device/linaro/bootloader/edk2/IntelFspWrapperPkg/Library/SecPeiFspPlatformSecLibSample/Ia32/ |
D | SecEntry.S | 258 .word 0xFFFF # limit 0xFFFFF 268 .word 0xFFFF # limit 0xFFFFF 278 .word 0xFFFF # limit 0xFFFFF 289 .word 0xFFFF # limit 0xFFFFF 299 .word 0xFFFF # limit 0xFFFFF 309 .word 0xFFFF # limit 0xFFFF 320 .word 0 # limit 0 332 .word GDT_SIZE - 1 # GDT limit
|
D | SecEntry.asm | 271 DW 0FFFFh ; limit 0xFFFFF 281 DW 0FFFFh ; limit 0xFFFFF 291 DW 0FFFFh ; limit 0xFFFFF 302 DW 0FFFFh ; limit 0xFFFFF 312 DW 0FFFFh ; limit 0xFFFFF 322 DW 0FFFFh ; limit 0xFFFF 333 DW 0 ; limit 0 345 DW GDT_SIZE - 1 ; GDT limit
|
/device/google/contexthub/util/nanotool/ |
D | contexthub.cpp | 272 void ContextHub::PrintAllEvents(unsigned int limit) { in PrintAllEvents() argument 273 bool continuous = (limit == 0); in PrintAllEvents() 274 auto event_printer = [&limit, continuous](const SensorEvent& event) -> bool { in PrintAllEvents() 276 return (continuous || --limit > 0); in PrintAllEvents() 330 void ContextHub::PrintSensorEvents(SensorType type, int limit) { in PrintSensorEvents() argument 331 bool continuous = (limit == 0); in PrintSensorEvents() 332 auto event_printer = [type, &limit, continuous](const SensorEvent& event) -> bool { in PrintSensorEvents() 336 limit -= event.GetNumSamples(); in PrintSensorEvents() 338 return (continuous || limit > 0); in PrintSensorEvents() 343 void ContextHub::PrintSensorEvents(const std::vector<SensorSpec>& sensors, int limit) { in PrintSensorEvents() argument [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | traceback.c | 236 tb_printinternal(PyTracebackObject *tb, PyObject *f, long limit) in tb_printinternal() argument 246 if (depth <= limit) { in tb_printinternal() 266 long limit = 1000; in PyTraceBack_Print() local 275 limit = PyInt_AsLong(limitv); in PyTraceBack_Print() 276 if (limit <= 0) in PyTraceBack_Print() 281 err = tb_printinternal((PyTracebackObject *)v, f, limit); in PyTraceBack_Print()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | traceback.c | 236 tb_printinternal(PyTracebackObject *tb, PyObject *f, long limit) in tb_printinternal() argument 246 if (depth <= limit) { in tb_printinternal() 266 long limit = 1000; in PyTraceBack_Print() local 275 limit = PyInt_AsLong(limitv); in PyTraceBack_Print() 276 if (limit <= 0) in PyTraceBack_Print() 281 err = tb_printinternal((PyTracebackObject *)v, f, limit); in PyTraceBack_Print()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/ |
D | stringio.c | 255 _stringio_readline(stringio *self, Py_ssize_t limit) in _stringio_readline() argument 265 if (limit < 0 || limit > self->string_size - self->pos) in _stringio_readline() 266 limit = self->string_size - self->pos; in _stringio_readline() 268 end = start + limit; in _stringio_readline() 278 len = limit; in _stringio_readline() 292 Py_ssize_t limit = -1; in stringio_readline() local 300 limit = PyNumber_AsSsize_t(arg, PyExc_OverflowError); in stringio_readline() 301 if (limit == -1 && PyErr_Occurred()) in stringio_readline() 309 return _stringio_readline(self, limit); in stringio_readline()
|