Home
last modified time | relevance | path

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

1234

/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)]
/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):
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Pkcs7Sign/
DReadme.md1 # Step by step to generate sample self-signed X.509 certificate chain and sign data with PKCS7 stru…
3 This readme demonstrates how to generate 3-layer X.509 certificate chain (RootCA -> IntermediateCA …
5 ## How to generate a self-signed X.509 certificate chain via OPENSSL
28 * Generate the certificate 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)))))
/device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Pk/
DCryptPkcs7Verify.c540 if (CertCtx.chain == NULL) { in Pkcs7GetCertificatesList()
541 if (((CertCtx.chain = sk_X509_new_null ()) == NULL) || in Pkcs7GetCertificatesList()
542 (!sk_X509_push (CertCtx.chain, CertCtx.cert))) { in Pkcs7GetCertificatesList()
573 if (!sk_X509_push (CertCtx.chain, Issuer)) { in Pkcs7GetCertificatesList()
598 if (CertCtx.chain != NULL) { in Pkcs7GetCertificatesList()
604 Status = X509PopCertificate (CertCtx.chain, &SingleCert, &CertSize); in Pkcs7GetCertificatesList()
/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 …]
/device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
Dpte.h93 uint64_t chain; /* pa of collision chain */ member
/device/linaro/bootloader/edk2/
Dedksetup.bat149 @echo --nt32 [X64] If a compiler tool chain is not available in the
153 @echo If the X64 argument is set, and a compiler tool chain is
154 @echo not available, attempt to set up a tool chain that will
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/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/google/coral/gpt-utils/
Dgpt-utils.h185 int gpt_utils_set_xbl_boot_partition(enum boot_chain chain);
/device/google/bonito/gpt-utils/
Dgpt-utils.h185 int gpt_utils_set_xbl_boot_partition(enum boot_chain chain);
/device/google/redbull/gpt-utils/
Dgpt-utils.h185 int gpt_utils_set_xbl_boot_partition(enum boot_chain chain);
/device/google/crosshatch/gpt-utils/
Dgpt-utils.h184 int gpt_utils_set_xbl_boot_partition(enum boot_chain chain);
/device/google/sunfish/gpt-utils/
Dgpt-utils.h185 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/google/bonito/
DWCNSS_qcom_cfg.ini524 # chain mask related params
535 # configure tx and rx per band chain mask. These parameters will
543 # 1: use chain 0
544 # 2: use chain 1
545 # 3: can use either chain
665 #Enable/Disable chain selection optimization for one chain dtim
/device/google/crosshatch/
DWCNSS_qcom_cfg.ini524 # chain mask related params
535 # configure tx and rx per band chain mask. These parameters will
543 # 1: use chain 0
544 # 2: use chain 1
545 # 3: can use either chain
665 #Enable/Disable chain selection optimization for one chain dtim
/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

1234