/device/linaro/bootloader/edk2/ArmPkg/Library/ArmMmuLib/AArch64/ |
D | ArmMmuLibReplaceEntry.S | 19 .macro __replace_entry, el argument 22 mrs x8, sctlr_el\el 24 msr sctlr_el\el, x9 36 .if \el == 1 39 tlbi alle\el 44 msr sctlr_el\el, x8
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_contains.py | 6 def __init__(self, el): argument 7 self.el = el 10 def __contains__(self, el): argument 11 return self.el == el 15 return [self.el][n]
|
D | test_minidom.py | 222 el = dom.documentElement 223 el.setAttribute("spam", "jam2") 224 self.confirm(el.toxml() == '<abc spam="jam2"/>', "testAAA") 225 a = el.getAttributeNode("spam") 234 el = dom.documentElement 235 el.setAttribute("spam", "jam") 236 el.setAttribute("spam", "jam2") 237 self.confirm(el.toxml() == '<abc spam="jam2"/>', "testAAB") 307 el = dom.documentElement 308 el.setAttribute("spam", "jam") [all …]
|
D | test_sets.py | 688 for i, el in enumerate(dup_list): 689 self.assertIs(el, set_list[i])
|
D | test_set.py | 1388 for el in self.set: 1389 self.assertIn(el, dup) 1390 pos = dup.index(el) 1391 self.assertIs(el, dup.pop(pos))
|
/device/linaro/bootloader/arm-trusted-firmware/lib/xlat_tables/aarch64/ |
D | xlat_tables.c | 80 int el = GET_EL(read_CurrentEl()); in xlat_arch_current_el() local 82 assert(el > 0); in xlat_arch_current_el() 84 return el; in xlat_arch_current_el() 87 uint64_t xlat_arch_get_xn_desc(int el) in xlat_arch_get_xn_desc() argument 89 if (el == 3) { in xlat_arch_get_xn_desc() 92 assert(el == 1); in xlat_arch_get_xn_desc()
|
/device/linaro/bootloader/arm-trusted-firmware/plat/arm/common/ |
D | execution_state_switch.c | 42 int caller_64, from_el2, el, endianness, thumb = 0; in arm_execution_state_switch() local 123 el = from_el2 ? MODE32_hyp : MODE32_svc; in arm_execution_state_switch() 124 spsr = SPSR_MODE32(el, thumb ? SPSR_T_THUMB : SPSR_T_ARM, in arm_execution_state_switch() 132 el = from_el2 ? MODE_EL2 : MODE_EL1; in arm_execution_state_switch() 133 spsr = SPSR_64(el, MODE_SP_ELX, DISABLE_ALL_EXCEPTIONS); in arm_execution_state_switch()
|
/device/linaro/bootloader/arm-trusted-firmware/lib/xlat_tables_v2/aarch64/ |
D | xlat_tables_arch.c | 141 int el = GET_EL(read_CurrentEl()); in xlat_arch_current_el() local 143 assert(el > 0); in xlat_arch_current_el() 145 return el; in xlat_arch_current_el()
|
/device/linaro/bootloader/arm-trusted-firmware/lib/xlat_tables/ |
D | xlat_tables_private.h | 50 uint64_t xlat_arch_get_xn_desc(int el);
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/ |
D | parser.dlg | 983 { static char buf[300]; LabelEntry *el; 1005 } else if ( (el=(LabelEntry *)hash_get(Elabel, &zzbegexpr[1]))!=NULL ) { 1010 /* MR10 */ if ( GenCC && (el->elem == NULL || el->elem->ntype==nRuleRef) ) 1013 /* MR10 */ if ( !GenCC && (el->elem == NULL || el->elem->ntype==nRuleRef) && GenAST) { 1021 /* MR10 */ if (el->elem != NULL && el->elem->ntype == nToken) { 1022 /* MR10 */ list_add(&CurActionLabels,el);
|
D | scan.c | 1361 { static char buf[300]; LabelEntry *el; in act116() local 1383 } else if ( (el=(LabelEntry *)hash_get(Elabel, &zzbegexpr[1]))!=NULL ) { in act116() 1388 /* MR10 */ if ( GenCC && (el->elem == NULL || el->elem->ntype==nRuleRef) ) in act116() 1391 /* MR10 */ if ( !GenCC && (el->elem == NULL || el->elem->ntype==nRuleRef) && GenAST) { in act116() 1399 /* MR10 */ if (el->elem != NULL && el->elem->ntype == nToken) { in act116() 1400 /* MR10 */ list_add(&CurActionLabels,el); in act116()
|
D | antlr.g | 368 <<{ static char buf[300]; LabelEntry *el; 390 } else if ( (el=(LabelEntry *)hash_get(Elabel, &zzbegexpr[1]))!=NULL ) { 395 /* MR10 */ if ( GenCC && (el->elem == NULL || el->elem->ntype==nRuleRef) ) 398 /* MR10 */ if ( !GenCC && (el->elem == NULL || el->elem->ntype==nRuleRef) && GenAST) { 406 /* MR10 */ if (el->elem != NULL && el->elem->ntype == nToken) { 407 /* MR10 */ list_add(&CurActionLabels,el);
|
/device/linaro/bootloader/arm-trusted-firmware/lib/xlat_tables/aarch32/ |
D | xlat_tables.c | 42 uint64_t xlat_arch_get_xn_desc(int el __unused) in xlat_arch_get_xn_desc()
|
/device/linaro/bootloader/arm-trusted-firmware/include/lib/aarch64/ |
D | arch_helpers.h | 333 #define EL_IMPLEMENTED(el) \ argument 334 ((read_id_aa64pfr0_el1() >> ID_AA64PFR0_EL##el##_SHIFT) \
|
D | arch.h | 389 #define SPSR_64(el, sp, daif) \ argument 391 ((el) & MODE_EL_MASK) << MODE_EL_SHIFT | \
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | tupleobject.c | 371 tuplecontains(PyTupleObject *a, PyObject *el) in tuplecontains() argument 377 cmp = PyObject_RichCompareBool(el, PyTuple_GET_ITEM(a, i), in tuplecontains()
|
D | listobject.c | 438 list_contains(PyListObject *a, PyObject *el) in list_contains() argument 444 cmp = PyObject_RichCompareBool(el, PyList_GET_ITEM(a, i), in list_contains()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | tupleobject.c | 369 tuplecontains(PyTupleObject *a, PyObject *el) in tuplecontains() argument 375 cmp = PyObject_RichCompareBool(el, PyTuple_GET_ITEM(a, i), in tuplecontains()
|
D | listobject.c | 438 list_contains(PyListObject *a, PyObject *el) in list_contains() argument 444 cmp = PyObject_RichCompareBool(el, PyList_GET_ITEM(a, i), in list_contains()
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/DriverSampleDxe/ |
D | VfrStrings.uni | 66 …na larga a probar fuera de la eficacia de la capacidad del yo es cansada de capacidades el pulsar." 86 …#language fr-FR "Éste es el mensaje de la ayuda para la activación del armamento nuclear. Cuál es … 163 …#language fr-FR "Esto es la ayuda para el Fecha (mes/día/las). (Verificar de error se hará contra … 167 … #language fr-FR "Esto es la ayuda para el Tiempo (hora/minuto/segundo)."
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/expat/ |
D | xmlparse.c | 4493 ELEMENT_TYPE *el; in doProlog() local 4504 el = getElementType(parser, enc, s, nxt); in doProlog() 4505 if (!el) in doProlog() 4507 name = el->name; in doProlog()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/expat/ |
D | xmlparse.c | 4493 ELEMENT_TYPE *el; in doProlog() local 4504 el = getElementType(parser, enc, s, nxt); in doProlog() 4505 if (!el) in doProlog() 4507 name = el->name; in doProlog()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/expat/ |
D | xmlparse.c | 4615 ELEMENT_TYPE *el; in doProlog() local 4626 el = getElementType(parser, enc, s, nxt); in doProlog() 4627 if (!el) in doProlog() 4629 name = el->name; in doProlog()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/ |
D | README | 902 Emacs found in Misc/python-mode.el. (But then again, more recent 1149 Misc/python-mode.el. Originally written by the famous Tim Peters, it is now
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/ |
D | README | 909 Emacs found in Misc/python-mode.el. (But then again, more recent 1156 Misc/python-mode.el. Originally written by the famous Tim Peters, it is now
|