Home
last modified time | relevance | path

Searched refs:np (Results 1 – 17 of 17) sorted by relevance

/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
Dregparse.c4028 parse_char_property(Node** np, OnigToken* tok, UChar** src, UChar* end, in parse_char_property() argument
4037 *np = node_new_cclass(); in parse_char_property()
4038 CHECK_NULL_RETURN_MEMERR(*np); in parse_char_property()
4039 cc = NCCLASS(*np); in parse_char_property()
4183 parse_char_class(Node** np, OnigToken* tok, UChar** src, UChar* end, in parse_char_class() argument
4198 *np = NULL_NODE; in parse_char_class()
4218 *np = node = node_new_cclass(); in parse_char_class()
4503 if (cc != NCCLASS(*np)) in parse_char_class()
4505 onig_node_free(*np); in parse_char_class()
4513 parse_enclose(Node** np, OnigToken* tok, int term, UChar** src, UChar* end, in parse_enclose() argument
[all …]
Dregcomp.c3107 Node *head, *np, *insert_node; in divide_look_behind_alternatives() local
3112 np = NCAR(head); in divide_look_behind_alternatives()
3115 NANCHOR(head)->target = np; in divide_look_behind_alternatives()
3117 np = node; in divide_look_behind_alternatives()
3118 while ((np = NCDR(np)) != NULL_NODE) { in divide_look_behind_alternatives()
3121 NANCHOR(insert_node)->target = NCAR(np); in divide_look_behind_alternatives()
3122 NCAR(np) = insert_node; in divide_look_behind_alternatives()
3126 np = node; in divide_look_behind_alternatives()
3128 SET_NTYPE(np, NT_LIST); /* alt -> list */ in divide_look_behind_alternatives()
3129 } while ((np = NCDR(np)) != NULL_NODE); in divide_look_behind_alternatives()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dtupleobject.c397 register PyTupleObject *np; in tupleslice() local
412 np = (PyTupleObject *)PyTuple_New(len); in tupleslice()
413 if (np == NULL) in tupleslice()
416 dest = np->ob_item; in tupleslice()
422 return (PyObject *)np; in tupleslice()
441 PyTupleObject *np; in tupleconcat() local
452 np = (PyTupleObject *) PyTuple_New(size); in tupleconcat()
453 if (np == NULL) { in tupleconcat()
457 dest = np->ob_item; in tupleconcat()
464 dest = np->ob_item + Py_SIZE(a); in tupleconcat()
[all …]
Dstructseq.c74 PyTupleObject *np; in structseq_slice() local
83 np = (PyTupleObject *)PyTuple_New(high-low); in structseq_slice()
84 if (np == NULL) in structseq_slice()
89 PyTuple_SET_ITEM(np, i-low, v); in structseq_slice()
91 return (PyObject *) np; in structseq_slice()
Dlistobject.c469 PyListObject *np; in list_slice() local
481 np = (PyListObject *) PyList_New(len); in list_slice()
482 if (np == NULL) in list_slice()
486 dest = np->ob_item; in list_slice()
492 return (PyObject *)np; in list_slice()
511 PyListObject *np; in list_concat() local
522 np = (PyListObject *) PyList_New(size); in list_concat()
523 if (np == NULL) { in list_concat()
527 dest = np->ob_item; in list_concat()
534 dest = np->ob_item + Py_SIZE(a); in list_concat()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dtupleobject.c395 register PyTupleObject *np; in tupleslice() local
410 np = (PyTupleObject *)PyTuple_New(len); in tupleslice()
411 if (np == NULL) in tupleslice()
414 dest = np->ob_item; in tupleslice()
420 return (PyObject *)np; in tupleslice()
439 PyTupleObject *np; in tupleconcat() local
450 np = (PyTupleObject *) PyTuple_New(size); in tupleconcat()
451 if (np == NULL) { in tupleconcat()
455 dest = np->ob_item; in tupleconcat()
462 dest = np->ob_item + Py_SIZE(a); in tupleconcat()
[all …]
Dstructseq.c74 PyTupleObject *np; in structseq_slice() local
83 np = (PyTupleObject *)PyTuple_New(high-low); in structseq_slice()
84 if (np == NULL) in structseq_slice()
89 PyTuple_SET_ITEM(np, i-low, v); in structseq_slice()
91 return (PyObject *) np; in structseq_slice()
Dlistobject.c469 PyListObject *np; in list_slice() local
481 np = (PyListObject *) PyList_New(len); in list_slice()
482 if (np == NULL) in list_slice()
486 dest = np->ob_item; in list_slice()
492 return (PyObject *)np; in list_slice()
511 PyListObject *np; in list_concat() local
522 np = (PyListObject *) PyList_New(size); in list_concat()
523 if (np == NULL) { in list_concat()
527 dest = np->ob_item; in list_concat()
534 dest = np->ob_item + Py_SIZE(a); in list_concat()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Darraymodule.c609 arrayobject *np; in array_slice() local
620 np = (arrayobject *) newarrayobject(&Arraytype, ihigh - ilow, a->ob_descr); in array_slice()
621 if (np == NULL) in array_slice()
623 memcpy(np->ob_item, a->ob_item + ilow * a->ob_descr->itemsize, in array_slice()
625 return (PyObject *)np; in array_slice()
643 arrayobject *np; in array_concat() local
659 np = (arrayobject *) newarrayobject(&Arraytype, size, a->ob_descr); in array_concat()
660 if (np == NULL) { in array_concat()
663 memcpy(np->ob_item, a->ob_item, Py_SIZE(a)*a->ob_descr->itemsize); in array_concat()
664 memcpy(np->ob_item + Py_SIZE(a)*a->ob_descr->itemsize, in array_concat()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Darraymodule.c609 arrayobject *np; in array_slice() local
620 np = (arrayobject *) newarrayobject(&Arraytype, ihigh - ilow, a->ob_descr); in array_slice()
621 if (np == NULL) in array_slice()
623 memcpy(np->ob_item, a->ob_item + ilow * a->ob_descr->itemsize, in array_slice()
625 return (PyObject *)np; in array_slice()
643 arrayobject *np; in array_concat() local
659 np = (arrayobject *) newarrayobject(&Arraytype, size, a->ob_descr); in array_concat()
660 if (np == NULL) { in array_concat()
663 memcpy(np->ob_item, a->ob_item, Py_SIZE(a)*a->ob_descr->itemsize); in array_concat()
664 memcpy(np->ob_item + Py_SIZE(a)*a->ob_descr->itemsize, in array_concat()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlparser.h106 int np; /* number of elements in `p' */ member
Dlparser.c503 if (fs->np >= f->sizep) { in addprototype()
505 luaM_growvector(L, f->p, fs->np, f->sizep, Proto *, MAXARG_Bx, "functions"); in addprototype()
508 f->p[fs->np++] = clp = luaF_newproto(L); in addprototype()
522 init_exp(v, VRELOCABLE, luaK_codeABx(fs, OP_CLOSURE, 0, fs->np - 1)); in codeclosure()
538 fs->np = 0; in open_func()
567 luaM_reallocvector(L, f->p, f->sizep, fs->np, Proto *); in close_func()
568 f->sizep = fs->np; in close_func()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
Dmsvccompiler.py197 np = os.path.normpath(p)
199 if np not in reduced_paths:
200 reduced_paths.append(np)
Dmsvc9compiler.py202 np = os.path.normpath(p)
204 if np not in reduced_paths:
205 reduced_paths.append(np)
/device/linaro/bootloader/edk2/EmbeddedPkg/Scripts/LauterbachT32/
DEfiProcessTeImage.cmm64 ; $fprintf 50, "load /ni /np /a %s &0x%x\n",elfpath,elfbase$;
/device/linaro/bootloader/edk2/StdLib/Efi/StdLib/etc/
Dservices267 prospero-np 1525/tcp # Prospero non-privileged
268 prospero-np 1525/udp
/device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/HiKey/DeviceTree/
Dhi6220.dtsi787 g-np-tx-fifo-size = <128>;