Home
last modified time | relevance | path

Searched refs:el (Results 1 – 25 of 26) sorted by relevance

12

/device/linaro/bootloader/edk2/ArmPkg/Library/ArmMmuLib/AArch64/
DArmMmuLibReplaceEntry.S19 .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/
Dtest_contains.py6 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]
Dtest_minidom.py222 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 …]
Dtest_sets.py688 for i, el in enumerate(dup_list):
689 self.assertIs(el, set_list[i])
Dtest_set.py1388 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/
Dxlat_tables.c80 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/
Dexecution_state_switch.c42 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/
Dxlat_tables_arch.c141 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/
Dxlat_tables_private.h50 uint64_t xlat_arch_get_xn_desc(int el);
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
Dparser.dlg983 { 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);
Dscan.c1361 { 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()
Dantlr.g368 <<{ 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/
Dxlat_tables.c42 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/
Darch_helpers.h333 #define EL_IMPLEMENTED(el) \ argument
334 ((read_id_aa64pfr0_el1() >> ID_AA64PFR0_EL##el##_SHIFT) \
Darch.h389 #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/
Dtupleobject.c371 tuplecontains(PyTupleObject *a, PyObject *el) in tuplecontains() argument
377 cmp = PyObject_RichCompareBool(el, PyTuple_GET_ITEM(a, i), in tuplecontains()
Dlistobject.c438 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/
Dtupleobject.c369 tuplecontains(PyTupleObject *a, PyObject *el) in tuplecontains() argument
375 cmp = PyObject_RichCompareBool(el, PyTuple_GET_ITEM(a, i), in tuplecontains()
Dlistobject.c438 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/
DVfrStrings.uni66 …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/
Dxmlparse.c4493 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/
Dxmlparse.c4493 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/
Dxmlparse.c4615 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/
DREADME902 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/
DREADME909 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

12