/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | methodobject.c | 319 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/ |
D | methodobject.c | 319 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/ |
D | heapq.py | 132 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.py | 205 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/ |
D | heapq.py | 132 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)]
|
D | tokenize.py | 29 from itertools import chain 222 for tok in chain([token], iterable):
|
D | _abcoll.py | 214 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/ |
D | test_itertools.py | 64 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 …]
|
D | test_heapq.py | 158 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)))))
|
D | sha256.pem | 1 # Certificate chain for https://sha256.tbs-internet.com
|
D | seq_tests.py | 82 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/ |
D | mrhoist.c | 2521 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 …]
|
D | fset2.c | 1813 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/ |
D | CryptPkcs7Verify.c | 538 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/ |
D | pte.h | 93 uint64_t chain; /* pa of collision chain */ member
|
/device/linaro/bootloader/edk2/OvmfPkg/VirtioNetDxe/ |
D | TechNotes.txt | 255 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/ |
D | BuildNotes2.txt | 48 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/ |
D | gpt-utils.h | 180 int gpt_utils_set_xbl_boot_partition(enum boot_chain chain);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/ |
D | refactor.py | 23 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/ |
D | README | 12 markov.py Markov chain simulation of words or characters
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/ |
D | EfiDriverLib_Edk2.inf | 55 # Only for CYGWINGCC IPF tool chain, EFI_BREAKPOINT and MEMORY_FENCE
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/ |
D | EfiRuntimeLib_Edk2.inf | 61 # Only for CYGWINGCC IPF tool chain, EFI_BREAKPOINT and MEMORY_FENCE
|
/device/linaro/bootloader/OpenPlatformPkg/Platforms/TexasInstruments/BeagleBoard/ |
D | b.bat | 22 @REM Set for tools chain. Currently RVCT
|
D | ba.bat | 22 @REM Set for tools chain. Currently ARMGCC
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/ |
D | PeiLib_Edk2.inf | 87 # Only for CYGWINGCC IPF tool chain, EFI_BREAKPOINT and MEMORY_FENCE
|