Home
last modified time | relevance | path

Searched refs:lim (Results 1 – 20 of 20) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
DBsearch.c90 size_t lim; in bsearch() local
94 for (lim = nmemb; lim != 0; lim >>= 1) { in bsearch()
95 p = base + (lim >> 1) * size; in bsearch()
101 lim--; in bsearch()
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dldo.c163 int lim = L->stacksize; in luaD_reallocstack() local
167 for (; lim < newsize; lim++) in luaD_reallocstack()
168 setnilvalue(L->stack + lim); /* erase new segment */ in luaD_reallocstack()
196 StkId lim = L->top; in stackinuse() local
199 if (lim < ci->top) lim = ci->top; in stackinuse()
201 return cast_int(lim - L->stack) + 1; /* part of stack in use */ in stackinuse()
Dltable.c236 int lim = ttlg; in numusearray() local
237 if (lim > t->sizearray) { in numusearray()
238 lim = t->sizearray; /* adjust upper limit */ in numusearray()
239 if (i > lim) in numusearray()
243 for (; i <= lim; i++) { in numusearray()
Dlvm.c736 StkId lim = nci->u.l.base + getproto(nfunc)->numparams; in luaV_execute()
741 for (aux = 0; nfunc + aux < lim; aux++) in luaV_execute()
Dlgc.c503 StkId lim = th->stack + th->stacksize; /* real end of stack */ in traversestack() local
504 for (; o < lim; o++) /* clear not-marked stack slice */ in traversestack()
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
DLzmaDec.c299 unsigned lim, offset; in LzmaDec_DecodeReal() local
306 lim = (1 << kLenNumLowBits); in LzmaDec_DecodeReal()
317 lim = (1 << kLenNumMidBits); in LzmaDec_DecodeReal()
324 lim = (1 << kLenNumHighBits); in LzmaDec_DecodeReal()
327 TREE_DECODE(probLen, lim, len); in LzmaDec_DecodeReal()
479 const Byte *lim = dest + curLen; in LzmaDec_DecodeReal() local
483 while (++dest != lim); in LzmaDec_DecodeReal()
DLzFind.c524 const Byte *lim = cur + lenLimit; \
525 for (; c != lim; c++) if (*(c + diff) != *c) break; \
/device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
DLzmaDec.c299 unsigned lim, offset; in LzmaDec_DecodeReal() local
306 lim = (1 << kLenNumLowBits); in LzmaDec_DecodeReal()
317 lim = (1 << kLenNumMidBits); in LzmaDec_DecodeReal()
324 lim = (1 << kLenNumHighBits); in LzmaDec_DecodeReal()
327 TREE_DECODE(probLen, lim, len); in LzmaDec_DecodeReal()
479 const Byte *lim = dest + curLen; in LzmaDec_DecodeReal() local
483 while (++dest != lim); in LzmaDec_DecodeReal()
DLzFind.c524 const Byte *lim = cur + lenLimit; \
525 for (; c != lim; c++) if (*(c + diff) != *c) break; \
/device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
DLzmaDec.c297 unsigned lim, offset; in LzmaDec_DecodeReal() local
304 lim = (1 << kLenNumLowBits); in LzmaDec_DecodeReal()
315 lim = (1 << kLenNumMidBits); in LzmaDec_DecodeReal()
322 lim = (1 << kLenNumHighBits); in LzmaDec_DecodeReal()
325 TREE_DECODE(probLen, lim, len); in LzmaDec_DecodeReal()
477 const Byte *lim = dest + curLen; in LzmaDec_DecodeReal() local
481 while (++dest != lim); in LzmaDec_DecodeReal()
DLzFind.c522 const Byte *lim = cur + lenLimit; \
523 for (; c != lim; c++) if (*(c + diff) != *c) break; \
/device/linaro/bootloader/edk2/AppPkg/Applications/Enquire/
DEnquire.c726 long val, long lim, long req, char *mark));
1250 long lim,
1259 } else if (val + lim < 0) {
1264 sort, name, -lim, mark, val+lim, mark);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Darraymodule.c1811 Py_ssize_t lim = step - 1; in array_ass_subscr() local
1814 lim = Py_SIZE(self) - cur - 1; in array_ass_subscr()
1817 lim * itemsize); in array_ass_subscr()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Darraymodule.c1826 Py_ssize_t lim = step - 1; in array_ass_subscr() local
1829 lim = Py_SIZE(self) - cur - 1; in array_ass_subscr()
1832 lim * itemsize); in array_ass_subscr()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dbytearrayobject.c706 Py_ssize_t lim = step - 1; in bytearray_ass_subscript() local
709 lim = PyByteArray_GET_SIZE(self) - cur - 1; in bytearray_ass_subscript()
712 self->ob_bytes + cur + 1, lim); in bytearray_ass_subscript()
Dlistobject.c2658 Py_ssize_t lim = step - 1; in list_ass_subscript() local
2663 lim = Py_SIZE(self) - cur - 1; in list_ass_subscript()
2668 lim * sizeof(PyObject *)); in list_ass_subscript()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dbytearrayobject.c712 Py_ssize_t lim = step - 1; in bytearray_ass_subscript() local
715 lim = PyByteArray_GET_SIZE(self) - cur - 1; in bytearray_ass_subscript()
718 self->ob_bytes + cur + 1, lim); in bytearray_ass_subscript()
Dlistobject.c2659 Py_ssize_t lim = step - 1; in list_ass_subscript() local
2664 lim = Py_SIZE(self) - cur - 1; in list_ass_subscript()
2669 lim * sizeof(PyObject *)); in list_ass_subscript()
/device/generic/goldfish-opengl/system/GLESv2_enc/
DGL2Encoder.cpp4705 #define LIMIT_CASE(target, lim) \ argument
4707 ctx->glGetIntegerv(ctx, lim, &limit); \
/device/linaro/dragonboard/db845c/firmware/
Dadsp.b1332lim lib param: %d��capi_v2_limiter24.cpp:CAPI_V2 limiter: Get config params, Bad param size %lu���…