Home
last modified time | relevance | path

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

123

/l4re-core-master/lua/lib/contrib/src/
A Dltm.c107 setobj2s(L, func + 1, p1); /* 1st argument */ in luaT_callTM()
124 setobj2s(L, func + 1, p1); /* 1st argument */ in luaT_callTMres()
143 luaT_callTMres(L, tm, p1, p2, res); in callbinTM()
154 if (ttisnumber(p1) && ttisnumber(p2)) in luaT_trybinTM()
155 luaG_tointerror(L, p1, p2); in luaT_trybinTM()
178 luaT_trybinTM(L, p2, p1, res, event); in luaT_trybinassocTM()
180 luaT_trybinTM(L, p1, p2, res, event); in luaT_trybinassocTM()
188 luaT_trybinassocTM(L, p1, &aux, flip, res, event); in luaT_trybiniTM()
209 if (callbinTM(L, p2, p1, L->top, TM_LT)) { in luaT_callorderTM()
230 p2 = p1; p1 = &aux; /* correct them */ in luaT_callorderiTM()
[all …]
A Dltm.h81 LUAI_FUNC void luaT_callTM (lua_State *L, const TValue *f, const TValue *p1,
84 const TValue *p1, const TValue *p2, StkId p3);
85 LUAI_FUNC void luaT_trybinTM (lua_State *L, const TValue *p1, const TValue *p2,
88 LUAI_FUNC void luaT_trybinassocTM (lua_State *L, const TValue *p1,
90 LUAI_FUNC void luaT_trybiniTM (lua_State *L, const TValue *p1, lua_Integer i2,
92 LUAI_FUNC int luaT_callorderTM (lua_State *L, const TValue *p1,
94 LUAI_FUNC int luaT_callorderiTM (lua_State *L, const TValue *p1, int v2,
A Dldebug.h47 LUAI_FUNC l_noret luaG_concaterror (lua_State *L, const TValue *p1,
49 LUAI_FUNC l_noret luaG_opinterror (lua_State *L, const TValue *p1,
52 LUAI_FUNC l_noret luaG_tointerror (lua_State *L, const TValue *p1,
54 LUAI_FUNC l_noret luaG_ordererror (lua_State *L, const TValue *p1,
A Dlobject.c89 int luaO_rawarith (lua_State *L, int op, const TValue *p1, const TValue *p2, in luaO_rawarith() argument
96 if (tointegerns(p1, &i1) && tointegerns(p2, &i2)) { in luaO_rawarith()
104 if (tonumberns(p1, n1) && tonumberns(p2, n2)) { in luaO_rawarith()
112 if (ttisinteger(p1) && ttisinteger(p2)) { in luaO_rawarith()
113 setivalue(res, intarith(L, op, ivalue(p1), ivalue(p2))); in luaO_rawarith()
116 else if (tonumberns(p1, n1) && tonumberns(p2, n2)) { in luaO_rawarith()
126 void luaO_arith (lua_State *L, int op, const TValue *p1, const TValue *p2, in luaO_arith() argument
128 if (!luaO_rawarith(L, op, p1, p2, s2v(res))) { in luaO_arith()
130 luaT_trybinTM(L, p1, p2, res, cast(TMS, (op - LUA_OPADD) + TM_ADD)); in luaO_arith()
A Dldebug.c717 l_noret luaG_concaterror (lua_State *L, const TValue *p1, const TValue *p2) { in luaG_concaterror() argument
718 if (ttisstring(p1) || cvt2str(p1)) p1 = p2; in luaG_concaterror()
719 luaG_typeerror(L, p1, "concatenate"); in luaG_concaterror()
723 l_noret luaG_opinterror (lua_State *L, const TValue *p1, in luaG_opinterror() argument
725 if (!ttisnumber(p1)) /* first operand is wrong? */ in luaG_opinterror()
726 p2 = p1; /* now second is wrong */ in luaG_opinterror()
734 l_noret luaG_tointerror (lua_State *L, const TValue *p1, const TValue *p2) { in luaG_tointerror() argument
736 if (!luaV_tointegerns(p1, &temp, LUA_FLOORN2I)) in luaG_tointerror()
737 p2 = p1; in luaG_tointerror()
742 l_noret luaG_ordererror (lua_State *L, const TValue *p1, const TValue *p2) { in luaG_ordererror() argument
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/test/nptl/
A Dtst-vfork1.c42 pid_t p1; in do_test() local
43 if ((p1 = vfork ()) == 0) in do_test()
48 else if (p1 == -1) in do_test()
61 if (TEMP_FAILURE_RETRY (waitpid (p1, &r, 0)) != p1) in do_test()
82 else if (p1 == -1) in do_test()
115 if (p0 == p1) in do_test()
117 printf ("p0(%ld) == p1(%ld)\n", (long int) p0, (long int) p1); in do_test()
121 if (p1 != p2) in do_test()
123 printf ("p1(%ld) != p2(%ld)\n", (long int) p1, (long int) p2); in do_test()
A Dtst-vfork1x.c42 pid_t p1; in do_test() local
43 if ((p1 = vfork ()) == 0) in do_test()
48 else if (p1 == -1) in do_test()
61 if (TEMP_FAILURE_RETRY (waitpid (p1, &r, 0)) != p1) in do_test()
82 else if (p1 == -1) in do_test()
115 if (p0 == p1) in do_test()
117 printf ("p0(%ld) == p1(%ld)\n", (long int) p0, (long int) p1); in do_test()
121 if (p1 != p2) in do_test()
123 printf ("p1(%ld) != p2(%ld)\n", (long int) p1, (long int) p2); in do_test()
A Dtst-vfork2.c77 pid_t p1; in do_test() local
78 if ((p1 = vfork ()) == 0) in do_test()
88 else if (p1 == -1) in do_test()
104 if (TEMP_FAILURE_RETRY (waitpid (p1, &r, 0)) != p1) in do_test()
125 else if (p1 == -1) in do_test()
158 if (p0 == p1) in do_test()
160 printf ("p0(%ld) == p1(%ld)\n", (long int) p0, (long int) p1); in do_test()
164 if (p1 != p2) in do_test()
166 printf ("p1(%ld) != p2(%ld)\n", (long int) p1, (long int) p2); in do_test()
A Dtst-vfork2x.c77 pid_t p1; in do_test() local
78 if ((p1 = vfork ()) == 0) in do_test()
88 else if (p1 == -1) in do_test()
104 if (TEMP_FAILURE_RETRY (waitpid (p1, &r, 0)) != p1) in do_test()
125 else if (p1 == -1) in do_test()
158 if (p0 == p1) in do_test()
160 printf ("p0(%ld) == p1(%ld)\n", (long int) p0, (long int) p1); in do_test()
164 if (p1 != p2) in do_test()
166 printf ("p1(%ld) != p2(%ld)\n", (long int) p1, (long int) p2); in do_test()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/bfin/
A Dstrcmp.S29 p1 = r0; define
46 r1 = [p1++];
65 r6 = r3 +|+ r0 || r1 = [p1++] || nop;
75 p1 += 4;
81 p1 += -8;
94 r1 = B[p1++] (Z);
101 r3 = r2 - r1 (NS) || r1 = B[p1++] (Z) || nop;
111 r1=B[p1+ -2] (Z);
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/arm/
A Dgetcontext.S64 stcl p1, cr10, [r0], #8
65 stcl p1, cr11, [r0], #8
66 stcl p1, cr12, [r0], #8
67 stcl p1, cr13, [r0], #8
68 stcl p1, cr14, [r0], #8
69 stcl p1, cr15, [r0], #8
A Dsetcontext.S44 ldcl p1, cr10, [r0], #8
45 ldcl p1, cr11, [r0], #8
46 ldcl p1, cr12, [r0], #8
47 ldcl p1, cr13, [r0], #8
48 ldcl p1, cr14, [r0], #8
49 ldcl p1, cr15, [r0], #8
A D__longjmp.S94 ldcl p1, cr10, [r12], #8
95 ldcl p1, cr11, [r12], #8
96 ldcl p1, cr12, [r12], #8
97 ldcl p1, cr13, [r12], #8
98 ldcl p1, cr14, [r12], #8
99 ldcl p1, cr15, [r12], #8
A Dsetjmp.S84 stcl p1, cr10, [r12], #8
85 stcl p1, cr11, [r12], #8
86 stcl p1, cr12, [r12], #8
87 stcl p1, cr13, [r12], #8
88 stcl p1, cr14, [r12], #8
89 stcl p1, cr15, [r12], #8
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/
A Dstrverscmp.c51 const unsigned char *p1 = (const unsigned char *) s1; in strverscmp() local
83 if (p1 == p2) in strverscmp()
86 c1 = *p1++; in strverscmp()
94 c1 = *p1++; in strverscmp()
107 while (isdigit (*p1++)) in strverscmp()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/regex/
A Dregex_old.c791 UCHAR_T *p1; in PREFIX() local
1018 p1 = p + mcnt; in PREFIX()
1030 p1 = p + mcnt; in PREFIX()
1037 p1 = p + mcnt; in PREFIX()
5607 UCHAR_T *p1; in wcs_re_match_2_internal() local
6812 p1++; in wcs_re_match_2_internal()
7010 while (p1 < pend && (re_opcode_t) *p1 == no_op) in wcs_re_match_2_internal()
7019 highest_active_reg = *(p1 + 1) + *(p1 + 2); in wcs_re_match_2_internal()
7635 p1++; in PREFIX()
7796 *p = p1; in PREFIX()
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/libm/
A De_lgamma_r.c202 double t,y,z,nadj=0,p,p1,p2,p3,q,r,w; in __ieee754_lgamma_r() local
250 p1 = a0+z*(a2+z*(a4+z*(a6+z*(a8+z*a10)))); in __ieee754_lgamma_r()
252 p = y*p1+p2; in __ieee754_lgamma_r()
257 p1 = t0+w*(t3+w*(t6+w*(t9 +w*t12))); /* parallel comp */ in __ieee754_lgamma_r()
260 p = z*p1-(tt-w*(p2+y*p3)); in __ieee754_lgamma_r()
263 p1 = y*(u0+y*(u1+y*(u2+y*(u3+y*(u4+y*u5))))); in __ieee754_lgamma_r()
265 r += (-0.5*y + p1/p2); in __ieee754_lgamma_r()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/src/c++17/ryu/
A Dgeneric_128.h389 const uint128_t p1 = q1 + (c1 << 64) + d0; // 128 in mul_128_256_shift() local
390 const uint128_t d2 = p1 < q1; // 256 in mul_128_256_shift()
394 const uint128_t r0 = corr + ((p0 >> shift) | (p1 << (128 - shift))); in mul_128_256_shift()
395 const uint128_t r1 = ((p1 >> shift) | (p2 << (128 - shift))) + (r0 < corr); in mul_128_256_shift()
401 const uint128_t r0 = corr + p1; in mul_128_256_shift()
408 const uint128_t r0 = corr + ((p1 >> (shift - 128)) | (p2 << (256 - shift))); in mul_128_256_shift()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/generic/
A Dstrcmp.c25 int strcmp (const char *p1, const char *p2) in strcmp() argument
27 register const unsigned char *s1 = (const unsigned char *) p1; in strcmp()
/l4re-core-master/uclibc/lib/contrib/uclibc/utils/
A Dldconfig.c385 static int libcmp(char *p1, char *p2) in libcmp() argument
387 while (*p1) { in libcmp()
388 if (isdigit(*p1) && isdigit(*p2)) { in libcmp()
391 v1 = strtoul(p1, &p1, 10); in libcmp()
395 } else if (isdigit(*p1) && !isdigit(*p2)) in libcmp()
397 else if (!isdigit(*p1) && isdigit(*p2)) in libcmp()
399 else if (*p1 != *p2) in libcmp()
400 return *p1 - *p2; in libcmp()
402 p1++, p2++; in libcmp()
405 return *p1 - *p2; in libcmp()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/src/c++11/
A Dshared_ptr.cc68 _Sp_locker::_Sp_locker(const void* p1, const void* p2) noexcept in _Sp_locker() argument
72 _M_key1 = key(p1); in _Sp_locker()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/src/c++11/
A Dshared_ptr.cc68 _Sp_locker::_Sp_locker(const void* p1, const void* p2) noexcept in _Sp_locker() argument
72 _M_key1 = key(p1); in _Sp_locker()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/src/c++11/
A Dshared_ptr.cc70 _Sp_locker::_Sp_locker(const void* p1, const void* p2) noexcept in _Sp_locker() argument
74 _M_key1 = key(p1); in _Sp_locker()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/src/c++11/
A Dshared_ptr.cc70 _Sp_locker::_Sp_locker(const void* p1, const void* p2) noexcept in _Sp_locker() argument
74 _M_key1 = key(p1); in _Sp_locker()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/src/c++11/
A Dshared_ptr.cc70 _Sp_locker::_Sp_locker(const void* p1, const void* p2) noexcept in _Sp_locker() argument
74 _M_key1 = key(p1); in _Sp_locker()

Completed in 37 milliseconds

123