Home
last modified time | relevance | path

Searched refs:chain (Results 1 – 25 of 63) sorted by relevance

123

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dmethodobject.c319 listmethodchain(PyMethodChain *chain) in listmethodchain() argument
327 for (c = chain; c != NULL; c = c->link) { in listmethodchain()
335 for (c = chain; c != NULL; c = c->link) { in listmethodchain()
352 Py_FindMethodInChain(PyMethodChain *chain, PyObject *self, const char *name) in Py_FindMethodInChain() argument
359 return listmethodchain(chain); in Py_FindMethodInChain()
367 while (chain != NULL) { in Py_FindMethodInChain()
368 PyMethodDef *ml = chain->methods; in Py_FindMethodInChain()
375 chain = chain->link; in Py_FindMethodInChain()
386 PyMethodChain chain; in Py_FindMethod() local
387 chain.methods = methods; in Py_FindMethod()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dmethodobject.c319 listmethodchain(PyMethodChain *chain) in listmethodchain() argument
327 for (c = chain; c != NULL; c = c->link) { in listmethodchain()
335 for (c = chain; c != NULL; c = c->link) { in listmethodchain()
352 Py_FindMethodInChain(PyMethodChain *chain, PyObject *self, const char *name) in Py_FindMethodInChain() argument
359 return listmethodchain(chain); in Py_FindMethodInChain()
367 while (chain != NULL) { in Py_FindMethodInChain()
368 PyMethodDef *ml = chain->methods; in Py_FindMethodInChain()
375 chain = chain->link; in Py_FindMethodInChain()
386 PyMethodChain chain; in Py_FindMethod() local
387 chain.methods = methods; in Py_FindMethod()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dheapq.py132 from itertools import islice, repeat, count, imap, izip, tee, chain
368 return [min(chain(head, it))]
369 return [min(chain(head, it), key=key)]
406 return [max(chain(head, it))]
407 return [max(chain(head, it), key=key)]
D_abcoll.py205 chain = (e for s in (self, other) for e in s)
206 return self._from_iterable(chain)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dheapq.py132 from itertools import islice, count, imap, izip, tee, chain
411 return [min(chain(head, it))]
412 return [min(chain(head, it), key=key)]
449 return [max(chain(head, it))]
450 return [max(chain(head, it), key=key)]
Dtokenize.py29 from itertools import chain
222 for tok in chain([token], iterable):
D_abcoll.py214 chain = (e for s in (self, other) for e in s)
215 return self._from_iterable(chain)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_itertools.py64 for c in (chain, chain2):
72 self.assertEqual(list(chain.from_iterable(['abc', 'def'])), list('abcdef'))
73 self.assertEqual(list(chain.from_iterable(['abc'])), list('abc'))
74 self.assertEqual(list(chain.from_iterable([''])), [])
75 self.assertEqual(take(4, chain.from_iterable(['abc', 'def'])), list('abcd'))
76 self.assertRaises(TypeError, list, chain.from_iterable([2, 3]))
319 data = chain.from_iterable(repeat(range(6), n))
320 selectors = chain.from_iterable(repeat((0, 1)))
903 for f in (chain, cycle, izip, groupby):
926 self.assertEqual(''.join(chain('ABC', 'DEF')), 'ABCDEF')
[all …]
Dtest_heapq.py158 self.assertEqual(sorted(chain(*inputs)), list(self.module.merge(*inputs)))
313 from itertools import chain, imap
316 return chain(imap(lambda x:x, R(Ig(G(seqn)))))
Dsha256.pem1 # Certificate chain for https://sha256.tbs-internet.com
Dseq_tests.py82 from itertools import chain, imap
85 return chain(imap(lambda x:x, iterfunc(IterGen(Sequence(seqn)))))
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
Dmrhoist.c2521 Tree *MR_merge_tree_contexts_client(Tree *t,int chain[]) argument
2523 Tree *MR_merge_tree_contexts_client(t,chain)
2525 int chain[];
2529 if (chain[0] == 0) {
2533 return MR_merge_tree_contexts_client(u,&chain[0]);
2535 if (chain[0] == t->token) {
2536 t->down=MR_merge_tree_contexts_client(t->down,&chain[1]);
2538 t->right=MR_merge_tree_contexts_client(t->right,&chain[0]);
2543 void MR_iterateOverTreeContexts(Tree *t,int chain[]) argument
2545 void MR_iterateOverTreeContexts(t,chain)
[all …]
Dfset2.c1813 void MR_iterateOverTree(Tree *t,int chain[]) in MR_iterateOverTree() argument
1815 void MR_iterateOverTree(t,chain) in MR_iterateOverTree()
1817 int chain[];
1821 chain[0]=t->token;
1823 MR_iterateOverTree(t->down,&chain[1]);
1827 MR_iterateOverTree(t->right,&chain[0]);
1828 chain[0]=0;
/device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Pk/
DCryptPkcs7Verify.c538 if (CertCtx.chain == NULL) { in Pkcs7GetCertificatesList()
539 if (((CertCtx.chain = sk_X509_new_null ()) == NULL) || in Pkcs7GetCertificatesList()
540 (!sk_X509_push (CertCtx.chain, CertCtx.cert))) { in Pkcs7GetCertificatesList()
571 if (!sk_X509_push (CertCtx.chain, Issuer)) { in Pkcs7GetCertificatesList()
596 if (CertCtx.chain != NULL) { in Pkcs7GetCertificatesList()
602 Status = X509PopCertificate (CertCtx.chain, &SingleCert, &CertSize); in Pkcs7GetCertificatesList()
/device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
Dpte.h93 uint64_t chain; /* pa of collision chain */ member
/device/linaro/bootloader/edk2/OvmfPkg/VirtioNetDxe/
DTechNotes.txt255 VirtioNetInitRx sets up a separate, two-part descriptor chain. For packet N,
256 the Nth descriptor chain is set up as follows:
264 - a link from the first (head) descriptor in the chain is established to the
265 second (tail) descriptor in the chain.
274 even (=2*N), and fingers the head descriptor of the chain belonging to packet
283 bytes transferred for the entire descriptor chain. This enables the guest to
324 - If the stack is empty (that is, each descriptor chain, in isolation, is
329 - Otherwise the index of a free chain's head descriptor is popped from the
353 of this (and the choice of a stack over a list for free descriptor chain
/device/linaro/bootloader/edk2/
DBuildNotes2.txt48 The default tool chain (named MYTOOLS) is pre-configured to use VS2008 for IA32
50 different tool chain, either modify the tools_def.txt file's MYTOOLS entries,
55 tool chain tag name: build -t VS2008 ... , for example. Using this method will
57 windows OS, you should use tool chain tag name with x86, such as VS2008x86.
/device/google/marlin/recovery/gpt-utils/
Dgpt-utils.h180 int gpt_utils_set_xbl_boot_partition(enum boot_chain chain);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
Drefactor.py23 from itertools import chain
97 for node_type in chain(pygram.python_grammar.symbol2number.itervalues(),
214 for fixer in chain(self.post_order, self.pre_order):
416 for fixer in chain(self.pre_order, self.post_order):
475 for fixer in chain(self.pre_order, self.post_order):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
DREADME12 markov.py Markov chain simulation of words or characters
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/
DEfiDriverLib_Edk2.inf55 # Only for CYGWINGCC IPF tool chain, EFI_BREAKPOINT and MEMORY_FENCE
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/
DEfiRuntimeLib_Edk2.inf61 # Only for CYGWINGCC IPF tool chain, EFI_BREAKPOINT and MEMORY_FENCE
/device/linaro/bootloader/OpenPlatformPkg/Platforms/TexasInstruments/BeagleBoard/
Db.bat22 @REM Set for tools chain. Currently RVCT
Dba.bat22 @REM Set for tools chain. Currently ARMGCC
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/
DPeiLib_Edk2.inf87 # Only for CYGWINGCC IPF tool chain, EFI_BREAKPOINT and MEMORY_FENCE

123