Home
last modified time | relevance | path

Searched refs:p1 (Results 1 – 25 of 71) sorted by relevance

123

/device/google/contexthub/firmware/os/inc/
Dsyscall_defs.h46 #define syscallDo1P(syscallNo,p1) cpuSyscallDo1P(syscallNo,p1) argument
48 #define syscallDo1P(syscallNo,p1) syscallDoGeneric(syscallNo,p1) argument
52 #define syscallDo2P(syscallNo,p1,p2) cpuSyscallDo2P(syscallNo,p1,p2) argument
54 #define syscallDo2P(syscallNo,p1,p2) syscallDoGeneric(syscallNo,p1,p2) argument
58 #define syscallDo3P(syscallNo,p1,p2,p3) cpuSyscallDo3P(syscallNo,p1,p2,p3) argument
60 #define syscallDo3P(syscallNo,p1,p2,p3) syscallDoGeneric(syscallNo,p1,p2,p3) argument
64 #define syscallDo4P(syscallNo,p1,p2,p3,p4) cpuSyscallDo4P(syscallNo,p1,p2,p3,p4) argument
66 #define syscallDo4P(syscallNo,p1,p2,p3,p4) syscallDoGeneric(syscallNo,p1,p2,p3,p4) argument
70 #define syscallDo5P(syscallNo,p1,p2,p3,p4,p5) cpuSyscallDo5P(syscallNo,p1,p2,p3,p4,p5) argument
72 #define syscallDo5P(syscallNo,p1,p2,p3,p4,p5) syscallDoGeneric(syscallNo,p1,p2,p3,p4,p5) argument
[all …]
/device/google/contexthub/firmware/os/cpu/cortexm4/inc/cpu/
DsyscallDo.h68 #define cpuSyscallDo1P(syscallNo, p1) \
71 register uint32_t _r1 asm("r1") = (uint32_t)p1;\
83 #define cpuSyscallDo2P(syscallNo, p1, p2) \
86 register uint32_t _r1 asm("r1") = (uint32_t)p1;\
97 #define cpuSyscallDo3P(syscallNo, p1, p2, p3) \
100 register uint32_t _r1 asm("r1") = (uint32_t)p1;\
112 #define cpuSyscallDo4P(syscallNo, p1, p2, p3, p4) \
115 register uint32_t _r1 asm("r1") = (uint32_t)p1; \
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/
DString.c688 CHAR16 *p1; in EfiStrTrim() local
698 for (p1 = str; *p1 && *p1 == CharC; p1++) { in EfiStrTrim()
703 if (p2 == p1) { in EfiStrTrim()
704 while (*p1) { in EfiStrTrim()
706 p1++; in EfiStrTrim()
709 while (*p1) { in EfiStrTrim()
710 *p2 = *p1; in EfiStrTrim()
711 p1++; in EfiStrTrim()
718 for (p1 = str + EfiStrLen(str) - 1; p1 >= str && *p1 == CharC; p1--) { in EfiStrTrim()
721 if (p1 != str + EfiStrLen(str) - 1) { in EfiStrTrim()
[all …]
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
Dbuild.c106 j1->p1 = (Node *) a;
179 j1->p1 = (Node *) t;
236 j1->p1 = (Node *) t;
289 j1->p1 = (Node *) r;
321 ((Junction *)g2.right)->p1 = g1.right;
350 ((Junction *)g1.right)->p1 = g2.left;
385 ((Junction *)g1.right)->p1 = (Node *) j2; /* add node to G at end */
400 ((Junction *)g.right)->p1 = (Node *)j2; /* opt alt points to EndBlk */
403 j1->p1 = g1.left; /* add generic node in front */
433 ((Junction *)g1.right)->p1 = (Node *) j2; /* add node to G at end */
[all …]
Dfset.c214 …if ( p->p1 == NULL ) set_orel((TokenInd!=NULL?TokenInd[EofToken]:EofToken), &a);/* if no FOLLOW as…
220 if ( p->p1 != NULL ) {
226 /* MR14 */ guess_point=p->p1;
232 REACH(p->p1, k, rk, a);
684 Predicate *p1; local
747 p1=predicate_dup_without_context(alt1->predicate);
748 p1=MR_unfold(p1);
749 MR_clearPredEntry(p1);
750 MR_simplifyInverted(p1,0);
751 p1=MR_predSimplifyALL(p1);
[all …]
Dmisc.c373 RemapForcedTokensInSyntaxDiagram( j->p1 );
966 PRINT(q->p1);
968 PRINT(alt->p1);
985 if ( alt->p1 != NULL ) PRINT(alt->p1);
1016 p = (Junction *) ((Junction *)alt->p2)->p1;
1033 p = (Junction *)p->p1;
1062 if ( q->end->p1 != NULL && ((Junction *)q->end->p1)->ntype==nJunction &&
1063 ((Junction *)q->end->p1)->jtype == EndRule ) doing_rule = 1;
1087 if ( q->end->p1 != NULL ) PRINT(q->end->p1);
1106 if ( q->end->p1 != NULL ) PRINT(q->end->p1);
[all …]
Dgen.c526 if ( q->jtype == aLoopBegin ) begin = (Junction *) ((Junction *)q->p1);
533 a = findImmedAction( ((Junction *)q->p1)->p1 ); /* look at aLoopBlk */
535 a = findImmedAction( q->p1 );
1561 if (first_item_is_guess_block((Junction *)q->p1)!=NULL )
1570 TRANS(q->p1);
1579 Node *p = alt->p1;
1602 /* MR23 */ if (isEmptyAlt( ((Junction *)p)->p1, (Node *)q->end)) {
1644 if ( first_item_is_guess_block((Junction *)alt->p1)!=NULL )
1650 if ( first_item_is_guess_block((Junction *)alt->p1)!=NULL ) _gen("!zzrv && ");
1655 TRANS(alt->p1);
[all …]
Dantlr.c666 ((Junction *)r.right)->p1 = (Node *)p; in rule()
1686 if ( ((Junction *)g.left)->p1->ntype == nAction )
1689 ( ( (Junction *)g.left) ->p1);
1844 TokNode *tk = (TokNode *)((Junction *)zzaArg(zztasp2,2 ).left)->p1;
1849 RuleRefNode *rn = (RuleRefNode *)((Junction *)zzaArg(zztasp2,2 ).left)->p1;
2022 p=((TokNode *)((Junction *)zzaRet.left)->p1);
2139 zzaRet = buildToken(LATEXT(1)); p=((TokNode *)((Junction *)zzaRet.left)->p1);
2247 zzaRet = buildWildCard(LATEXT(1)); p=((TokNode *)((Junction *)zzaRet.left)->p1);
2303 q = (RuleRefNode *) ((Junction *)zzaRet.left)->p1;
2337 addParm(((Junction *)zzaRet.left)->p1, LATEXT(1));
[all …]
Dpred.c167 if ( p->p1->ntype != nJunction ||
168 ((Junction *)p->p1)->jtype != EndBlk )
170 a = find_predicates(p->p1); /* get preds for this alt */
220 return find_in_aSubBlk( (Junction *) alt->p1 ); /* get preds in alts */
357 a = find_predicates(p->p1);
361 a = find_predicates(p->p1);
/device/google/contexthub/firmware/lib/libc/
Dmemcmp.c45 const unsigned char *p1 = s1, *p2 = s2; in memcmp() local
48 if (*p1++ != *p2++) in memcmp()
49 return (*--p1 - *--p2); in memcmp()
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dldebug.h26 LUAI_FUNC l_noret luaG_concaterror (lua_State *L, StkId p1, StkId p2);
27 LUAI_FUNC l_noret luaG_aritherror (lua_State *L, const TValue *p1,
29 LUAI_FUNC l_noret luaG_ordererror (lua_State *L, const TValue *p1,
Dldebug.c532 l_noret luaG_concaterror (lua_State *L, StkId p1, StkId p2) { in luaG_concaterror() argument
533 if (ttisstring(p1) || ttisnumber(p1)) p1 = p2; in luaG_concaterror()
534 lua_assert(!ttisstring(p1) && !ttisnumber(p1)); in luaG_concaterror()
535 luaG_typeerror(L, p1, "concatenate"); in luaG_concaterror()
539 l_noret luaG_aritherror (lua_State *L, const TValue *p1, const TValue *p2) { in luaG_aritherror() argument
541 if (luaV_tonumber(p1, &temp) == NULL) in luaG_aritherror()
542 p2 = p1; /* first operand is wrong */ in luaG_aritherror()
547 l_noret luaG_ordererror (lua_State *L, const TValue *p1, const TValue *p2) { in luaG_ordererror() argument
548 const char *t1 = objtypename(p1); in luaG_ordererror()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Drow.c74 char* p1; in pysqlite_row_subscript() local
100 p1 = key; in pysqlite_row_subscript()
104 if ((*p1 == (char)0) || (*p2 == (char)0)) { in pysqlite_row_subscript()
108 if ((*p1 | 0x20) != (*p2 | 0x20)) { in pysqlite_row_subscript()
112 p1++; in pysqlite_row_subscript()
116 if ((*p1 == (char)0) && (*p2 == (char)0)) { in pysqlite_row_subscript()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
Dfuture.py58 p1 = FutureParser()
60 walk(node, p1)
62 return p1.get_features()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
Dfix_xrange.py55 p1 = patcomp.compile_pattern(P1) variable in FixXrange
68 self.p1.match(node.parent.parent, results) and
Dfix_dict.py84 p1 = patcomp.compile_pattern(P1) variable in FixDict
96 self.p1.match(node.parent.parent, results) and
/device/linaro/bootloader/edk2/DuetPkg/PciRootBridgeNoEnumerationDxe/Ipf/
DPcatIo.c417 *Buffer.ui8 = (UINT8)Return.p1; in PcatRootBridgeIoPciRW()
421 Data16 = (UINT16)Return.p1; in PcatRootBridgeIoPciRW()
425 *Buffer.ui16 = (UINT16)Return.p1; in PcatRootBridgeIoPciRW()
430 Data32 = (UINT32)Return.p1; in PcatRootBridgeIoPciRW()
436 *Buffer.ui32 = (UINT32)Return.p1; in PcatRootBridgeIoPciRW()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dfractions.py243 p0, q0, p1, q1 = 0, 1, 1, 0
250 p0, q0, p1, q1 = p1, q1, p0+a*p1, q2
254 bound1 = Fraction(p0+k*p1, q0+k*q1)
255 bound2 = Fraction(p1, q1)
/device/linaro/bootloader/edk2/StdLib/LibC/Locale/
Diswctype_sb.c219 wint_t towctrans(wint_t p1, wctrans_t tranfunc) in towctrans() argument
221 return tranfunc(p1); in towctrans()
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ipf/
DReadAr.s64 .pred.rel "mutex",p1,p2,p3,p4,p5,p6,p7,p8,p17,p18,p19,p20,p22,p25,\
66 (p1) mov ret0=ar.k0 // ar0
DReadCr.s65 .pred.rel "mutex",p1,p2,p3,p9,p17,p18,p20,p21,p22,p23,p24,p25,p26,\
67 (p1) mov ret0=cr.dcr // cr0
/device/google/dragon/audio/hal/dsp/
Ddrc.c139 float z1, p1; in emphasis_stage_pair_biquads() local
142 emphasis_stage_roots(gain, f1, &z1, &p1); in emphasis_stage_pair_biquads()
149 float a1 = -(p1 + p2); in emphasis_stage_pair_biquads()
150 float a2 = p1 * p2; in emphasis_stage_pair_biquads()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/
Dtest_pytree.py348 p1 = pytree.Node(1000, [n1, n2])
352 self.assertEqual(p1.next_sibling, None)
357 p1 = pytree.Node(1000, [l1, l2])
361 self.assertEqual(p1.next_sibling, None)
366 p1 = pytree.Node(1000, [n1, n2])
370 self.assertEqual(p1.prev_sibling, None)
375 p1 = pytree.Node(1000, [l1, l2])
379 self.assertEqual(p1.prev_sibling, None)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dpystrtod.c875 char *p1; in PyOS_double_to_string() local
876 for (p1 = buf; *p1; p1++) in PyOS_double_to_string()
877 *p1 = Py_TOUPPER(*p1); in PyOS_double_to_string()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dpystrtod.c875 char *p1; in PyOS_double_to_string() local
876 for (p1 = buf; *p1; p1++) in PyOS_double_to_string()
877 *p1 = Py_TOUPPER(*p1); in PyOS_double_to_string()

123