Home
last modified time | relevance | path

Searched refs:nd (Results 1 – 25 of 34) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Ddtoa.c273 int e0, nd, nd0, scale; member
484 s2b(const char *s, int nd0, int nd, ULong y9) in s2b() argument
490 x = (nd + 8) / 9; in s2b()
498 if (nd <= 9) in s2b()
508 for(; i < nd; i++) { in s2b()
1383 int b2, d2, dd, i, nd, nd0, odd, p2, p5; in bigcomp() local
1385 nd = bc->nd; in bigcomp()
1387 p5 = nd + bc->e0; in bigcomp()
1472 dd = i < nd; in bigcomp()
1475 if (!(i < nd)) { in bigcomp()
[all …]
/device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
Dstrtod.c94 e, e1, esign, i, j, k, nd, nd0, nf, nz, nz0, sign; in strtod() local
177 for(nd = nf = 0; (c = *s) >= '0' && c <= '9'; nd++, s++) in strtod()
178 if (nd < 9) in strtod()
180 else if (nd < 16) in strtod()
182 nd0 = nd; in strtod()
191 if (!nd) { in strtod()
208 if (nd++ < 9) in strtod()
210 else if (nd <= DBL_DIG + 1) in strtod()
212 if (nd++ < 9) in strtod()
214 else if (nd <= DBL_DIG + 1) in strtod()
[all …]
Dsmisc.c45 (s, nd0, nd, y9) CONST char *s; int nd0, nd; ULong y9; in s2b() argument
47 (CONST char *s, int nd0, int nd, ULong y9)
54 x = (nd + 8) / 9;
82 for(; i < nd; i++) {
Dstrtodg.c314 int j, k, nbits, nd, nd0, nf, nz, nz0, rd, rvbits, rve, rve1, sign; in strtodg() local
374 for(decpt = nd = nf = 0; (c = *s) >= '0' && c <= '9'; nd++, s++) in strtodg()
375 if (nd < 9) in strtodg()
377 else if (nd < 16) in strtodg()
379 nd0 = nd; in strtodg()
388 if (!nd) { in strtodg()
405 if (nd++ < 9) in strtodg()
407 else if (nd <= DBL_DIG + 1) in strtodg()
409 if (nd++ < 9) in strtodg()
411 else if (nd <= DBL_DIG + 1) in strtodg()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Ddtoa.c290 int e0, nd, nd0, scale; member
501 s2b(const char *s, int nd0, int nd, ULong y9) in s2b() argument
507 x = (nd + 8) / 9; in s2b()
515 if (nd <= 9) in s2b()
525 for(; i < nd; i++) { in s2b()
1400 int b2, d2, dd, i, nd, nd0, odd, p2, p5; in bigcomp() local
1402 nd = bc->nd; in bigcomp()
1404 p5 = nd + bc->e0; in bigcomp()
1489 dd = i < nd; in bigcomp()
1492 if (!(i < nd)) { in bigcomp()
[all …]
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
Dselect.c150 int nd, in select() argument
162 if (nd < 0) in select()
169 nfdbits = roundup(nd, NFDBITS); in select()
220 error = selscan(ibits, obits, nd, &nselected); in select()
/device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Arm/
DScanMem.asm126 moveq r5, r6 ; the end is in the 2nd word
127 subeq r0, r0, #3 ; Points to 2nd byte of 2nd word
128 subne r0, r0, #7 ; or 2nd byte of 1st word
134 tst r5, #CHARTSTMASK(1) ; 2nd character
137 tsteq r5, #(3 << 15) ; 2nd & 3rd character
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
Dregint.h675 #define NCCLASS_SET_NOT(nd) NCCLASS_FLAG_SET(nd, FLAG_NCCLASS_NOT) argument
676 #define NCCLASS_SET_SHARE(nd) NCCLASS_FLAG_SET(nd, FLAG_NCCLASS_SHARE) argument
677 #define NCCLASS_CLEAR_NOT(nd) NCCLASS_FLAG_CLEAR(nd, FLAG_NCCLASS_NOT) argument
678 #define IS_NCCLASS_NOT(nd) IS_NCCLASS_FLAG_ON(nd, FLAG_NCCLASS_NOT) argument
679 #define IS_NCCLASS_SHARE(nd) IS_NCCLASS_FLAG_ON(nd, FLAG_NCCLASS_SHARE) argument
Dregcomp.c4573 Node* nd = node; in optimize_node_left() local
4577 r = optimize_node_left(NCAR(nd), &nopt, &nenv); in optimize_node_left()
4582 } while (r == 0 && IS_NOT_NULL(nd = NCDR(nd))); in optimize_node_left()
4589 Node* nd = node; in optimize_node_left() local
4592 r = optimize_node_left(NCAR(nd), &nopt, env); in optimize_node_left()
4594 if (nd == node) copy_node_opt_info(opt, &nopt); in optimize_node_left()
4597 } while ((r == 0) && IS_NOT_NULL(nd = NCDR(nd))); in optimize_node_left()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dmemoryobject.c115 _strided_copy_nd(char *dest, char *src, int nd, Py_ssize_t *shape, in _strided_copy_nd() argument
121 if (nd==0) { in _strided_copy_nd()
124 else if (nd == 1) { in _strided_copy_nd()
139 for (k=1; k<nd-1;k++) { in _strided_copy_nd()
142 for (k=0; k<shape[nd-1]; k++) { in _strided_copy_nd()
143 _strided_copy_nd(dest, src, nd-1, shape, in _strided_copy_nd()
146 src += strides[nd-1]; in _strided_copy_nd()
157 for (k=1; k < nd; k++) { in _strided_copy_nd()
161 _strided_copy_nd(dest, src, nd-1, shape+1, in _strided_copy_nd()
Dfuncobject.c494 Py_ssize_t nk, nd; in function_call() local
499 nd = PyTuple_GET_SIZE(argdefs); in function_call()
503 nd = 0; in function_call()
530 k, nk, d, nd, in function_call()
Dabstract.c446 _Py_add_one_to_index_F(int nd, Py_ssize_t *index, const Py_ssize_t *shape) in _Py_add_one_to_index_F() argument
450 for (k=0; k<nd; k++) { in _Py_add_one_to_index_F()
462 _Py_add_one_to_index_C(int nd, Py_ssize_t *index, const Py_ssize_t *shape) in _Py_add_one_to_index_C() argument
466 for (k=nd-1; k>=0; k--) { in _Py_add_one_to_index_C()
656 PyBuffer_FillContiguousStrides(int nd, Py_ssize_t *shape, in PyBuffer_FillContiguousStrides() argument
665 for (k=0; k<nd; k++) { in PyBuffer_FillContiguousStrides()
671 for (k=nd-1; k>=0; k--) { in PyBuffer_FillContiguousStrides()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dmemoryobject.c115 _strided_copy_nd(char *dest, char *src, int nd, Py_ssize_t *shape, in _strided_copy_nd() argument
121 if (nd==0) { in _strided_copy_nd()
124 else if (nd == 1) { in _strided_copy_nd()
139 for (k=1; k<nd-1;k++) { in _strided_copy_nd()
142 for (k=0; k<shape[nd-1]; k++) { in _strided_copy_nd()
143 _strided_copy_nd(dest, src, nd-1, shape, in _strided_copy_nd()
146 src += strides[nd-1]; in _strided_copy_nd()
157 for (k=1; k < nd; k++) { in _strided_copy_nd()
161 _strided_copy_nd(dest, src, nd-1, shape+1, in _strided_copy_nd()
Dfuncobject.c494 Py_ssize_t nk, nd; in function_call() local
499 nd = PyTuple_GET_SIZE(argdefs); in function_call()
503 nd = 0; in function_call()
530 k, nk, d, nd, in function_call()
Dabstract.c446 _Py_add_one_to_index_F(int nd, Py_ssize_t *index, const Py_ssize_t *shape) in _Py_add_one_to_index_F() argument
450 for (k=0; k<nd; k++) { in _Py_add_one_to_index_F()
462 _Py_add_one_to_index_C(int nd, Py_ssize_t *index, const Py_ssize_t *shape) in _Py_add_one_to_index_C() argument
466 for (k=nd-1; k>=0; k--) { in _Py_add_one_to_index_C()
656 PyBuffer_FillContiguousStrides(int nd, Py_ssize_t *shape, in PyBuffer_FillContiguousStrides() argument
665 for (k=0; k<nd; k++) { in PyBuffer_FillContiguousStrides()
671 for (k=nd-1; k>=0; k--) { in PyBuffer_FillContiguousStrides()
/device/linaro/bootloader/edk2/StdLib/LibC/CRT/Ia32/
Dlldiv.c41 ; 2nd pushed: dividend (QWORD) in _alldiv()
/device/linaro/bootloader/OpenPlatformPkg/Documentation/Marvell/PortingGuide/
DPhy.txt35 Thus in order to set RGMII for 1st PHY and SGMII for 2nd, PCD should be:
/device/linaro/bootloader/edk2/IntelFspWrapperPkg/FspInitPei/
DFspInitPei.inf6 # call FspInit API. In 2nd entry, it will parse the hoblist from fsp and report
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dabstract.h1387 PyAPI_FUNC(void) _Py_add_one_to_index_F(int nd, Py_ssize_t *index,
1389 PyAPI_FUNC(void) _Py_add_one_to_index_C(int nd, Py_ssize_t *index,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dabstract.h1387 PyAPI_FUNC(void) _Py_add_one_to_index_F(int nd, Py_ssize_t *index,
1389 PyAPI_FUNC(void) _Py_add_one_to_index_C(int nd, Py_ssize_t *index,
/device/linaro/bootloader/edk2/IntelFsp2Pkg/Tools/UserManuals/
DPatchFvUserManual.md117 0x94, [PlatformInit:__gPcd_BinPatch_FvRecOffset] + 0x94, [0x98], $COPY, @Sync up 2nd FSP Header
/device/linaro/bootloader/edk2/ArmPlatformPkg/Documentation/
DArmPlatformPkg.txt68 - ArmPlatformPkg/Documentation/ArmPlatformLib-2nd-Stage.png
/device/linaro/bootloader/arm-trusted-firmware/docs/
Dpsci-lib-integration-guide.rst259 argument) determines the PSCI API to be called. The ``x1`` to ``x4`` (2nd to 5th
383 This function must store the pointer to the CPU context data, ``context`` (2nd
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/DriverSampleDxe/
DVfrStrings.uni158 #string STR_TEXT_TEXT_2 #language en-US "This is my 2nd text string that I am testin…
159 … #language fr-FR "This is my 2nd text string that I am testing"
/device/google/bonito/
Dinit.hardware.rc815 # Enable 2nd qcrild when the property set to dsds
819 # Stop 2nd qcrild when the property set to empty string

12