Home
last modified time | relevance | path

Searched refs:a1 (Results 1 – 25 of 60) sorted by relevance

123

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
DPython-ast.h375 #define Module(a0, a1) _Py_Module(a0, a1) argument
377 #define Interactive(a0, a1) _Py_Interactive(a0, a1) argument
379 #define Expression(a0, a1) _Py_Expression(a0, a1) argument
381 #define Suite(a0, a1) _Py_Suite(a0, a1) argument
383 #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
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
DPython-ast.h375 #define Module(a0, a1) _Py_Module(a0, a1) argument
377 #define Interactive(a0, a1) _Py_Interactive(a0, a1) argument
379 #define Expression(a0, a1) _Py_Expression(a0, a1) argument
381 #define Suite(a0, a1) _Py_Suite(a0, a1) argument
383 #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
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
Dpi.py14 k, a, b, a1, b1 = 2, 4, 1, 12, 4
18 a, b, a1, b1 = a1, b1, p*a+q*a1, p*b+q*b1
20 d, d1 = a//b, a1//b1
23 a, a1 = 10*(a%b), 10*(a1%b1)
24 d, d1 = a//b, a1//b1
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Doperator.c13 #define spam1(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a1) { \
14 return AOP(a1); }
17 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; \
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Doperator.c13 #define spam1(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a1) { \
14 return AOP(a1); }
17 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; \
[all …]
/device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/bits32/
Dsoftfloat-macros61 Shifts the 64-bit value formed by concatenating `a0' and `a1' right by the
70 bits32 a0, bits32 a1, int16 count, bits32 *z0Ptr, bits32 *z1Ptr )
76 z1 = a1;
80 z1 = ( a0<<negCount ) | ( a1>>count );
94 Shifts the 64-bit value formed by concatenating `a0' and `a1' right by the
99 or 1, depending on whether the concatenation of `a0' and `a1' is zero or
106 bits32 a0, bits32 a1, int16 count, bits32 *z0Ptr, bits32 *z1Ptr )
112 z1 = a1;
116 z1 = ( a0<<negCount ) | ( a1>>count ) | ( ( a1<<negCount ) != 0 );
121 z1 = a0 | ( a1 != 0 );
[all …]
/device/linaro/bootloader/edk2/ArmPkg/Library/ArmSoftFloatLib/bits32/
Dsoftfloat-macros61 Shifts the 64-bit value formed by concatenating `a0' and `a1' right by the
70 bits32 a0, bits32 a1, int16 count, bits32 *z0Ptr, bits32 *z1Ptr )
76 z1 = a1;
80 z1 = ( a0<<negCount ) | ( a1>>count );
94 Shifts the 64-bit value formed by concatenating `a0' and `a1' right by the
99 or 1, depending on whether the concatenation of `a0' and `a1' is zero or
106 bits32 a0, bits32 a1, int16 count, bits32 *z0Ptr, bits32 *z1Ptr )
112 z1 = a1;
116 z1 = ( a0<<negCount ) | ( a1>>count ) | ( ( a1<<negCount ) != 0 );
121 z1 = a0 | ( a1 != 0 );
[all …]
/device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/bits64/
Dsoftfloat-macros89 Shifts the 128-bit value formed by concatenating `a0' and `a1' right by 64
97 (This routine makes more sense if `a0' and `a1' are considered to form a
98 fixed-point value with binary point between `a0' and `a1'. This fixed-point
107 bits64 a0, bits64 a1, int16 count, bits64 *z0Ptr, bits64 *z1Ptr )
113 z1 = a1;
117 z1 = ( a0<<negCount ) | ( a1 != 0 );
122 z1 = a0 | ( a1 != 0 );
125 z1 = ( ( a0 | a1 ) != 0 );
136 Shifts the 128-bit value formed by concatenating `a0' and `a1' right by the
145 bits64 a0, bits64 a1, int16 count, bits64 *z0Ptr, bits64 *z1Ptr )
[all …]
/device/google/dragon/audio/hal/dsp/
Dbiquad.c31 double a0, double a1, double a2) in set_coefficient() argument
37 bq->a1 = a1 * a0_inv; in set_coefficient()
64 double a1 = 2 * -gamma; in biquad_lowpass() local
67 set_coefficient(bq, b0, b1, b2, 1, a1, a2); in biquad_lowpass()
99 double a1 = 2 * -gamma; in biquad_highpass() local
102 set_coefficient(bq, b0, b1, b2, 1, a1, a2); in biquad_highpass()
131 double a1 = -2 * k; in biquad_bandpass() local
134 set_coefficient(bq, b0, b1, b2, a0, a1, a2); in biquad_bandpass()
177 double a1 = -2 * (a_minus_one + a_plus_one * k); in biquad_lowshelf() local
180 set_coefficient(bq, b0, b1, b2, a0, a1, a2); in biquad_lowshelf()
[all …]
Dcrossover2.c18 lr42->a1 = q.a1; in lr42_set()
44 float32x4_t a1 = {lp->a1, hp->a1, lp->a1, hp->a1}; in lr42_split() local
95 [a1]"w"(a1), in lr42_split()
130 __m128 a1 = {lp->a1, hp->a1, lp->a1, hp->a1}; in lr42_split() local
198 [a1]"x"(a1), in lr42_split()
232 float la1 = lp->a1; in lr42_split()
244 float ha1 = hp->a1; in lr42_split()
328 float32x4_t a1 = {lp->a1, hp->a1, lp->a1, hp->a1}; in lr42_merge() local
374 [a1]"w"(a1), in lr42_merge()
408 __m128 a1 = {lp->a1, hp->a1, lp->a1, hp->a1}; in lr42_merge() local
[all …]
Deq.c55 float a1 = q->a1; in eq_process1() local
61 - a1*y1 - a2*y2; in eq_process1()
90 float a1 = q->a1; in eq_process() local
96 - a1*y1 - a2*y2; in eq_process()
117 float qa1 = q->a1; in eq_process()
125 float ra1 = r->a1; in eq_process()
Deq2.c65 float a1L = qL->a1; in eq2_process_one()
75 float a1R = qR->a1; in eq2_process_one()
130 float32x2_t qa1 = {qL->a1, qR->a1}; in eq2_process_two_neon()
138 float32x2_t ra1 = {rL->a1, rR->a1}; in eq2_process_two_neon()
223 __m128 qa1 = {qL->a1, qR->a1}; in eq2_process_two_sse3()
231 __m128 ra1 = {rL->a1, rR->a1}; in eq2_process_two_sse3()
Dcrossover.c16 lr4->a1 = q.a1; in lr4_set()
45 float la1 = lp->a1; in lr4_split()
57 float ha1 = hp->a1; in lr4_split()
118 float la1 = lp->a1; in lr4_merge()
130 float ha1 = hp->a1; in lr4_merge()
Ddrc.c149 float a1 = -(p1 + p2); in emphasis_stage_pair_biquads() local
153 float alpha = (a0 + a1 + a2) / (b0 + b1 + b2); in emphasis_stage_pair_biquads()
158 emphasis->a1 = a1; in emphasis_stage_pair_biquads()
161 float beta = (b0 + b1 + b2) / (a0 + a1 + a2); in emphasis_stage_pair_biquads()
164 deemphasis->b1 = a1 * beta; in emphasis_stage_pair_biquads()
166 deemphasis->a1 = b1; in emphasis_stage_pair_biquads()
Dbiquad.h23 float a1, a2; member
Dcrossover.h22 float a1, a2; member
Dcrossover2.h25 float a1, a2; member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_class.py600 a1 = A(1)
602 self.assertEqual(a1.f, a1.f)
603 self.assertNotEqual(a1.f, a2.f)
604 self.assertNotEqual(a1.f, a1.g)
605 self.assertEqual(a1.f, A(1).f)
606 self.assertEqual(hash(a1.f), hash(a1.f))
607 self.assertEqual(hash(a1.f), hash(A(1).f))
609 self.assertNotEqual(A.f, a1.f)
Dtest_minidom.py497 a1 = e.getAttributeNode("a")
499 self.confirm(a1.isSameNode(a2))
506 a1 = e.getAttributeNodeNS("http://xml.python.org/", "b")
508 self.confirm(a1.isSameNode(a2))
547 a1 = attrs1.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 …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dpdeps.py80 (a, b), (a1, b1) = m_import.regs[:2]
82 (a, b), (a1, b1) = m_from.regs[:2]
84 words = line[a1:b1].split(',')
Dpydocgui.pyw3 # between 2.2a1 and 2.2a2).
/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/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
/device/linaro/bootloader/edk2/Omap35xxPkg/Library/ResetSystemLib/
DResetSystemLib.inf19 FILE_GUID = 781371a2-3fdd-41d4-96a1-7b34cbc9e895
/device/linaro/bootloader/OpenPlatformPkg/Chips/TexasInstruments/Omap35xx/Library/ResetSystemLib/
DResetSystemLib.inf19 FILE_GUID = 781371a2-3fdd-41d4-96a1-7b34cbc9e895

123