Home
last modified time | relevance | path

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

123

/device/linaro/hikey/hifi/xaf/hifi-dpf/core/util/gdbstub/
Dgdbstub-entry.S48 xsr a2, DEBUG_EXCSAVE
49 jx a2
60 movi a2, aregs
61 s32i a0, a2, 0
62 s32i a1, a2, 4
64 s32i a1, a2, 8
65 s32i a3, a2, 12
76 movi a2, initial_breakpoint
77 bne a1, a2, 1f
89 movi a2, aregs
[all …]
/device/linaro/hikey/hifi/xaf/hifi-dpf/ipc/xt-shmem/hikey/
Darch_hifi330.S57 movi a2, OSIntCtxSw_Occur
59 s8i a3, a2, 0
61 movi a2, g_bVosRunning
63 s8i a3, a2, 0
67 movi a2, OS_TaskSwHook
68 callx4 a2
83 rsr a2, PS
85 s32i a2, sp, XT_SOL_PS
86 movi a2, g_pstVosTCBCur
88 l32i a2, a2, 0
[all …]
Dint_vector.S73 movi a2, SYS_log_msg
75 movi a2, SYS_gdb_abort
79 rsil a2, XCHAL_EXCM_LEVEL /* disable all low & med ints */
94 wsr a2, EXCSAVE+XCHAL_DEBUGLEVEL
95 movi a2, SYS_gdb_enter_sktloop
213 rsr a2, EXCCAUSE
214 beqi a2, EXCCAUSE_LEVEL1INTERRUPT, .L_xt_user_int
215 mov a6,a2
223 rsr a2, INTENABLE
226 and a2, a2, a3
[all …]
Dreset.S120 movi a2, XCHAL_INTTYPE_MASK_EXTERN_EDGE | XCHAL_INTTYPE_MASK_SOFTWARE
121 wsr a2, INTCLEAR
128 movi a2, XCHAL_DEBUGLEVEL - 1
129 wsr a2, PS
136 movi a2, 64
138 movi a2, 128
140 movi a2, 256
142 movi a2, 256
148 loop a2, .L0
160 loop a2, .L0
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
DPython-ast.h383 #define FunctionDef(a0, a1, a2, a3, a4, a5, a6) _Py_FunctionDef(a0, a1, a2, a3, a4, a5, a6) argument
387 #define ClassDef(a0, a1, a2, a3, a4, a5, a6) _Py_ClassDef(a0, a1, a2, a3, a4, a5, a6) argument
391 #define Return(a0, a1, a2, a3) _Py_Return(a0, a1, a2, a3) argument
393 #define Delete(a0, a1, a2, a3) _Py_Delete(a0, a1, a2, a3) argument
396 #define Assign(a0, a1, a2, a3, a4) _Py_Assign(a0, a1, a2, a3, a4) argument
399 #define AugAssign(a0, a1, a2, a3, a4, a5) _Py_AugAssign(a0, a1, a2, a3, a4, a5) argument
402 #define Print(a0, a1, a2, a3, a4, a5) _Py_Print(a0, a1, a2, a3, a4, a5) argument
405 #define For(a0, a1, a2, a3, a4, a5, a6) _Py_For(a0, a1, a2, a3, a4, a5, a6) argument
408 #define While(a0, a1, a2, a3, a4, a5) _Py_While(a0, a1, a2, a3, a4, a5) argument
411 #define If(a0, a1, a2, a3, a4, a5) _Py_If(a0, a1, a2, a3, a4, a5) argument
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
DPython-ast.h383 #define FunctionDef(a0, a1, a2, a3, a4, a5, a6) _Py_FunctionDef(a0, a1, a2, a3, a4, a5, a6) argument
387 #define ClassDef(a0, a1, a2, a3, a4, a5, a6) _Py_ClassDef(a0, a1, a2, a3, a4, a5, a6) argument
391 #define Return(a0, a1, a2, a3) _Py_Return(a0, a1, a2, a3) argument
393 #define Delete(a0, a1, a2, a3) _Py_Delete(a0, a1, a2, a3) argument
396 #define Assign(a0, a1, a2, a3, a4) _Py_Assign(a0, a1, a2, a3, a4) argument
399 #define AugAssign(a0, a1, a2, a3, a4, a5) _Py_AugAssign(a0, a1, a2, a3, a4, a5) argument
402 #define Print(a0, a1, a2, a3, a4, a5) _Py_Print(a0, a1, a2, a3, a4, a5) argument
405 #define For(a0, a1, a2, a3, a4, a5, a6) _Py_For(a0, a1, a2, a3, a4, a5, a6) argument
408 #define While(a0, a1, a2, a3, a4, a5) _Py_While(a0, a1, a2, a3, a4, a5) argument
411 #define If(a0, a1, a2, a3, a4, a5) _Py_If(a0, a1, a2, a3, a4, a5) argument
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Doperator.c17 PyObject *a1, *a2; \
18 if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \
19 return AOP(a1,a2); }
22 PyObject *a1; int a2; \
23 if(! PyArg_ParseTuple(a,"Oi:" #OP,&a1,&a2)) return NULL; \
24 return AOP(a1,a2); }
27 PyObject *a1, *a2; \
28 if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \
29 if(-1 == AOP(a1,a2)) return NULL; \
34 PyObject *a1, *a2, *a3; \
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Doperator.c17 PyObject *a1, *a2; \
18 if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \
19 return AOP(a1,a2); }
22 PyObject *a1; int a2; \
23 if(! PyArg_ParseTuple(a,"Oi:" #OP,&a1,&a2)) return NULL; \
24 return AOP(a1,a2); }
27 PyObject *a1, *a2; \
28 if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \
29 if(-1 == AOP(a1,a2)) return NULL; \
34 PyObject *a1, *a2, *a3; \
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dlist_tests.py35 a2 = self.type2test(l2)
39 self.assertEqual(repr(a2), repr(l2))
40 self.assertEqual(str(a2), "[0, 1, 2]")
41 self.assertEqual(repr(a2), "[0, 1, 2]")
43 a2.append(a2)
44 a2.append(3)
45 self.assertEqual(str(a2), "[0, 1, 2, [...], 3]")
46 self.assertEqual(repr(a2), "[0, 1, 2, [...], 3]")
150 a2 = a[:]
151 a2[:i] = a[:i]
[all …]
Dtest_minidom.py498 a2 = attrs.removeNamedItem("a")
499 self.confirm(a1.isSameNode(a2))
507 a2 = attrs.removeNamedItemNS("http://xml.python.org/", "b")
508 self.confirm(a1.isSameNode(a2))
548 a2 = attrs2.item(i)
549 self.confirm(a1 is not a2
550 and a1.value == a2.value
551 and a1.nodeValue == a2.nodeValue
552 and a1.namespaceURI == a2.namespaceURI
553 and a1.localName == a2.localName
[all …]
Dtest_tuple.py80 a2 = self.type2test(l2)
83 self.assertEqual(str(a2), repr(l2))
85 self.assertEqual(repr(a2), "(0, 1, 2)")
/device/google/crosshatch/audio/
DTest1_Crosshatch_5_10_2018_onsite_final_remove_actisonic.tuning12 "Mono_mix_crossover_left.HP_this.BQ 1.biquad leaf.a2": 0.831005589347,
18 "Mono_mix_crossover_left.HP_this.BQ 2.biquad leaf.a2": 0.831005589347,
25 "Mono_mix_crossover_left.LP_other.BQ 1.biquad leaf.a2": 0.831005589347,
31 "Mono_mix_crossover_left.LP_other.BQ 2.biquad leaf.a2": 0.831005589347,
38 "Mono_mix_crossover_left.LP_this.BQ 1.biquad leaf.a2": 0.831005589347,
44 "Mono_mix_crossover_left.LP_this.BQ 2.biquad leaf.a2": 0.831005589347,
52 "Mono_mix_crossover_right.HP_this.BQ 1.biquad leaf.a2": 0.831005589347,
58 "Mono_mix_crossover_right.HP_this.BQ 2.biquad leaf.a2": 0.831005589347,
65 "Mono_mix_crossover_right.LP_other.BQ 1.biquad leaf.a2": 0.831005589347,
71 "Mono_mix_crossover_right.LP_other.BQ 2.biquad leaf.a2": 0.831005589347,
[all …]
/device/linaro/bootloader/edk2/ArmPkg/Library/ArmSoftFloatLib/bits32/
Dsoftfloat-macros138 Shifts the 96-bit value formed by concatenating `a0', `a1', and `a2' right
147 (This routine makes more sense if `a0', `a1', and `a2' are considered
148 to form a fixed-point value with binary point between `a1' and `a2'. This
160 bits32 a2,
171 z2 = a2;
187 a2 |= a1;
199 z2 |= ( a2 != 0 );
228 Shifts the 96-bit value formed by concatenating `a0', `a1', and `a2' left
239 bits32 a2,
249 z2 = a2<<count;
[all …]
/device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/bits32/
Dsoftfloat-macros138 Shifts the 96-bit value formed by concatenating `a0', `a1', and `a2' right
147 (This routine makes more sense if `a0', `a1', and `a2' are considered
148 to form a fixed-point value with binary point between `a1' and `a2'. This
160 bits32 a2,
171 z2 = a2;
187 a2 |= a1;
199 z2 |= ( a2 != 0 );
228 Shifts the 96-bit value formed by concatenating `a0', `a1', and `a2' left
239 bits32 a2,
249 z2 = a2<<count;
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dclassfix.py162 (a0, b0), (a1, b1), (a2, b2) = classprog.regs[:3]
169 if a2 == b2: # No base classes -- easy case
173 basepart = line[a2+1:b2]
Dpydocgui.pyw3 # between 2.2a1 and 2.2a2).
/device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/bits64/
Dsoftfloat-macros213 Shifts the 192-bit value formed by concatenating `a0', `a1', and `a2' right
222 (This routine makes more sense if `a0', `a1', and `a2' are considered
223 to form a fixed-point value with binary point between `a1' and `a2'. This
235 bits64 a2,
246 z2 = a2;
262 a2 |= a1;
274 z2 |= ( a2 != 0 );
303 Shifts the 192-bit value formed by concatenating `a0', `a1', and `a2' left
314 bits64 a2,
324 z2 = a2<<count;
[all …]
/device/google/coral/nfc/
Dlibnfc-hal-st.conf144 a2, 01, 19,
/device/google/barbet/nfc/
Dlibnfc-hal-st-G4S1M.conf144 a2, 01, 19,
/device/google/redbull/nfc/
Dlibnfc-hal-st.conf144 a2, 01, 19,
/device/google/bramble/nfc/
Dlibnfc-hal-st-G6QU3.conf144 a2, 01, 19,
/device/google/sunfish/nfc/
Dlibnfc-hal-st.conf144 a2, 01, 19,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Dgzwrite.c386 int ZEXPORTVA gzprintf (file, format, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, in gzprintf() argument
390 int a1, a2, a3, a4, a5, a6, a7, a8, a9, a10,
431 sprintf((char *)(state->in), format, a1, a2, a3, a4, a5, a6, a7, a8,
436 len = sprintf((char *)(state->in), format, a1, a2, a3, a4, a5, a6, a7, a8,
441 snprintf((char *)(state->in), size, format, a1, a2, a3, a4, a5, a6, a7, a8,
445 len = snprintf((char *)(state->in), size, format, a1, a2, a3, a4, a5, a6,
/device/google/cuttlefish/host/frontend/gcastv2/webrtc/certs/
Dtrusted.pem20 87:ad:75:4b:5b:fd:9c:08:80:5f:ec:37:96:96:a2:
32 cd:a2:84:e0:d2:da:e7:b8:39:aa:00:27:6a:87:f0:
37 de:b1:70:cd:72:c8:d4:bb:27:e6:72:0c:48:69:0b:ed:a2:25:
/device/linaro/bootloader/edk2/StdLib/Include/sys/
Dsysctl.h162 #define SYSCTL_OID(parent, nbr, name, kind, a1, a2, handler, fmt, descr) \ argument
164 nbr, kind, a1, a2, #name, handler, fmt }; \
174 #define SYSCTL_OID(parent, nbr, name, kind, a1, a2, handler, fmt, descr) argument

123