Searched defs:x1 (Results 1 - 24 of 24) sorted by relevance

/device/linaro/bootloader/arm-trusted-firmware/services/std_svc/
H A Dstd_svc_setup.c58 uint64_t x1,
71 return psci_smc_handler(smc_fid, x1, x2, x3, x4, cookie,
57 std_svc_smc_handler(uint32_t smc_fid, uint64_t x1, uint64_t x2, uint64_t x3, uint64_t x4, void *cookie, void *handle, uint64_t flags) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A Datexit.py55 def x1(): function in function:register
56 print "running x1"
62 register(x1)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Datexit.py55 def x1(): function in function:register
56 print "running x1"
62 register(x1)
/device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
H A Dgmisc.c40 ULong *x, *x1, *xe, y; local
43 x = x1 = b->x;
52 *x1++ = (y | (*x << n)) & ALL_ON;
55 if ((*x1 = y) !=0)
56 x1++;
60 *x1++ = *x++;
62 if ((b->wds = (int)(x1 - b->x)) == 0)
H A Dhexnan.c39 L_shift(x, x1, i) ULong *x; ULong *x1; int i;
41 L_shift(ULong *x, ULong *x1, int i)
52 } while(++x < x1);
63 ULong c, h, *x, *x1, *xe; local
74 x1 = xe = x;
81 if (x < x1 && i < 8)
82 L_shift(x, x1, i);
89 x1 = x;
111 if (x < x1
[all...]
H A Dsmisc.c189 ULong *x, *x0, x1, x2; local
197 x1 = x2 = x[n];
198 x1 >>= k;
199 x1 <<= k;
200 if (x1 != x2)
H A Dmisc.c467 ULong *x, *x1, *xe, z; local
477 x1 = b1->x;
479 *x1++ = 0;
487 *x1++ = *x << k | z;
491 if ((*x1 = z) !=0)
497 *x1++ = *x << k & 0xffff | z;
501 if (*x1 = z)
506 *x1++ = *x++;
/device/google/dragon/audio/hal/dsp/
H A Dcrossover.h23 float x1, x2; member in struct:lr4
H A Dbiquad.h15 * are stored in x1 and x2, and the previous two outputs are stored in y1 and
24 float x1, x2; member in struct:biquad
H A Deq.c48 float x1 = q->x1; local
60 + b1*x1 + b2*x2
63 x2 = x1;
64 x1 = x;
68 q->x1 = x1;
83 float x1 = q->x1; local
95 + b1*x1
110 float x1 = q->x1; local
[all...]
H A Deq2.c58 float x1L = qL->x1;
68 float x1R = qR->x1;
103 qL->x1 = x1L;
107 qR->x1 = x1R;
123 float32x2_t x1 = {qL->x1, qR->x1}; local
144 "vmul.f32 d1, %P[qb1], %P[x1] \n"
151 "vmov.f32 %P[x2], %P[x1] \n"
152 "vmov.f32 %P[x1], d
216 __m128 x1 = {qL->x1, qR->x1}; local
[all...]
H A Dcrossover2.c35 float32x4_t x1 = {lp->x1L, hp->x1L, lp->x1R, hp->x1R}; local
50 "vmul.f32 q1, %q[b1], %q[x1] \n"
57 "vmov.f32 %q[x2], %q[x1] \n"
58 "vmov.f32 %q[x1], q0 \n"
80 [x1]"+w"(x1),
101 lp->x1L = x1[0]; lp->x1R = x1[2];
108 hp->x1L = x1[1]; hp->x1R = x1[
121 __m128 x1 = {lp->x1L, hp->x1L, lp->x1R, hp->x1R}; local
319 float32x4_t x1 = {lp->x1L, hp->x1L, lp->x1R, hp->x1R}; local
399 __m128 x1 = {lp->x1L, hp->x1L, lp->x1R, hp->x1R}; local
[all...]
/device/linaro/bootloader/arm-trusted-firmware/services/spd/tspd/
H A Dtspd_main.c294 uint64_t x1,
415 tsp_vectors = (tsp_vectors_t *) x1;
484 tspd_synchronous_sp_exit(tsp_ctx, x1);
516 * Jump back to the original C runtime context, and pass x1 as
519 tspd_synchronous_sp_exit(tsp_ctx, x1);
538 * The parameters are in x1 and x2. Figure out which
550 /* Save x1 and x2 for use by TSP_GET_ARGS call below */
551 store_tsp_args(tsp_ctx, x1, x2);
589 SMC_RET3(&tsp_ctx->cpu_ctx, smc_fid, x1, x2);
593 * earlier request. The results are in x1
293 tspd_smc_handler(uint32_t smc_fid, uint64_t x1, uint64_t x2, uint64_t x3, uint64_t x4, void *cookie, void *handle, uint64_t flags) argument
[all...]
/device/google/contexthub/firmware/os/inc/algos/
H A Dfusion.h42 struct Vec3 x1; member in struct:Fusion
/device/google/contexthub/lib/nanohub/
H A Daes.c206 uint32_t x0, x1, x2, x3; //we CAN use an array, but then GCC will not use registers. so we use separate vars. sigh... local
211 x1 = *src++ ^ *k++;
221 ror(FwdTab0[(x1 >> 16) & 0xff], 8) ^
226 ror(FwdTab0[(x1 >> 24) & 0xff], 0) ^
235 ror(FwdTab0[(x1 >> 0) & 0xff], 24);
240 ror(FwdTab0[(x1 >> 8) & 0xff], 16) ^
244 x1 = t1;
251 (((uint32_t)(FwdSbox[(x1 >> 16) & 0xff])) << 16) ^
256 (((uint32_t)(FwdSbox[(x1 >> 24) & 0xff])) << 24) ^
265 (((uint32_t)(FwdSbox[(x1 >>
276 uint32_t x0, x1, x2, x3; local
[all...]
/device/linaro/bootloader/arm-trusted-firmware/services/std_svc/psci/
H A Dpsci_main.c370 uint64_t x1,
388 x1 = (uint32_t)x1;
400 SMC_RET1(handle, psci_cpu_suspend(x1, x2, x3));
403 SMC_RET1(handle, psci_cpu_on(x1, x2, x3));
406 SMC_RET1(handle, psci_affinity_info(x1, x2));
409 SMC_RET1(handle, psci_migrate(x1));
418 SMC_RET1(handle, psci_system_suspend(x1, x2));
429 SMC_RET1(handle, psci_features(x1));
439 SMC_RET1(handle, psci_cpu_suspend(x1, x
369 psci_smc_handler(uint32_t smc_fid, uint64_t x1, uint64_t x2, uint64_t x3, uint64_t x4, void *cookie, void *handle, uint64_t flags) argument
[all...]
/device/linaro/bootloader/arm-trusted-firmware/services/spd/opteed/
H A Dopteed_main.c343 uint64_t x1,
367 * The parameters are in x1 and x2. Figure out which
414 SMC_RET4(&optee_ctx->cpu_ctx, smc_fid, x1, x2, x3);
431 optee_vectors = (optee_vectors_t *) x1;
461 opteed_synchronous_sp_exit(optee_ctx, x1);
492 * Jump back to the original C runtime context, and pass x1 as
495 opteed_synchronous_sp_exit(optee_ctx, x1);
519 SMC_RET4(ns_cpu_context, x1, x2, x3, x4);
342 opteed_smc_handler(uint32_t smc_fid, uint64_t x1, uint64_t x2, uint64_t x3, uint64_t x4, void *cookie, void *handle, uint64_t flags) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Ddtoa.c847 ULong *x, *x1, *xe, z; local
862 x1 = b1->x;
864 *x1++ = 0;
871 *x1++ = *x << k | z;
875 if ((*x1 = z))
879 *x1++ = *x++;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Ddtoa.c830 ULong *x, *x1, *xe, z; local
845 x1 = b1->x;
847 *x1++ = 0;
854 *x1++ = *x << k | z;
858 if ((*x1 = z))
862 *x1++ = *x++;
/device/google/contexthub/firmware/os/cpu/cortexm4/inc/cpu/cmsis/
H A Darm_math.h1924 float32_t x1; /**< x1 */ member in struct:__anon144
5729 * using linear interpolation of the input values x0, x1( nearest input values) and the output values y0 and y1(nearest output values)
5733 * y = y0 + (x - x0) * ((y1 - y0)/(x1-x0))
5734 * where x0, x1 are nearest values of input x
5769 float32_t x0, x1; /* Nearest input values */ local
5776 i = (int32_t) ((x - S->x1) / xSpacing);
5791 x0 = S->x1 + i * xSpacing;
5792 x1 = S->x1
7213 q31_t x1, x2, y1, y2; /* Nearest output values */ local
7288 q15_t x1, x2, y1, y2; /* Nearest output values */ local
7369 q7_t x1, x2, y1, y2; /* Nearest output values */ local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A Dsocketmodule.c3785 int x1, x2; local
3787 if (!PyArg_ParseTuple(args, "i:ntohs", &x1)) {
3790 if (x1 < 0) {
3795 x2 = (unsigned int)ntohs((unsigned short)x1);
3854 int x1, x2; local
3856 if (!PyArg_ParseTuple(args, "i:htons", &x1)) {
3859 if (x1 < 0) {
3864 x2 = (unsigned int)htons((unsigned short)x1);
H A Ddatetimemodule.c1503 PyObject *x1 = NULL; local
1508 x1 = PyInt_FromLong(GET_TD_DAYS(self));
1509 if (x1 == NULL)
1511 x2 = PyNumber_Multiply(x1, seconds_per_day); /* days in seconds */
1514 Py_DECREF(x1);
1515 x1 = NULL;
1518 x1 = PyInt_FromLong(GET_TD_SECONDS(self)); /* seconds */
1519 if (x1 == NULL)
1521 x3 = PyNumber_Add(x1, x2); /* days and seconds in seconds */
1524 Py_DECREF(x1);
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Dsocketmodule.c3703 int x1, x2; local
3705 if (!PyArg_ParseTuple(args, "i:ntohs", &x1)) {
3708 if (x1 < 0) {
3713 x2 = (unsigned int)ntohs((unsigned short)x1);
3772 int x1, x2; local
3774 if (!PyArg_ParseTuple(args, "i:htons", &x1)) {
3777 if (x1 < 0) {
3782 x2 = (unsigned int)htons((unsigned short)x1);
H A Ddatetimemodule.c1503 PyObject *x1 = NULL; local
1508 x1 = PyInt_FromLong(GET_TD_DAYS(self));
1509 if (x1 == NULL)
1511 x2 = PyNumber_Multiply(x1, seconds_per_day); /* days in seconds */
1514 Py_DECREF(x1);
1515 x1 = NULL;
1518 x1 = PyInt_FromLong(GET_TD_SECONDS(self)); /* seconds */
1519 if (x1 == NULL)
1521 x3 = PyNumber_Add(x1, x2); /* days and seconds in seconds */
1524 Py_DECREF(x1);
[all...]

Completed in 416 milliseconds