Home
last modified time | relevance | path

Searched refs:B (Results 1 – 25 of 120) sorted by relevance

12345

/l4re-core-master/uclibc/lib/contrib/uclibc/test/regex/
A Dinterpretation.dat2 :RE#02:B .\(a*\). xaax (0,4)(1,3)
47 :RE#47:B \(a*\)*b\1 ab (0,2)(1,1)
48 :RE#48:B \(a*\)b\1* ab (0,2)(0,1)
49 :RE#49:B \(a*\)*b\1* ab (0,2)(1,1)
55 :RE#55:B \(a*\)*b\1 aba (0,3)(0,1)
79 :RE#79:B \(x\)*a\1 a NOMATCH
80 :RE#80:B \(x\)*a\1* a (0,1)(?,?)
81 :RE#81:B \(x\)*a\(\1\) a NOMATCH
90 :RE#90:E ^(A([^B]*))?(B(.*))? Aa (0,2)(0,2)(1,2)
91 :RE#91:E ^(A([^B]*))?(B(.*))? Bb (0,2)(?,?)(?,?)(0,2)(1,2)
[all …]
A Dnullsubexpr.dat54 B \(a*\)*\(x\) x (0,1)(0,0)(0,1)
55 B \(a*\)*\(x\) ax (0,2)(0,1)(1,2)
56 B \(a*\)*\(x\) axa (0,2)(0,1)(1,2)
57 B \(a*\)*\(x\)\(\1\) x (0,1)(0,0)(0,1)(1,1)
58 B \(a*\)*\(x\)\(\1\) ax (0,2)(1,1)(1,2)(2,2)
59 B \(a*\)*\(x\)\(\1\) axa (0,3)(0,1)(1,2)(2,3)
60 B \(a*\)*\(x\)\(\1\)\(x\) axax (0,4)(0,1)(1,2)(2,3)(3,4)
61 B \(a*\)*\(x\)\(\1\)\(x\) axxa (0,3)(1,1)(1,2)(2,2)(2,3)
A Dcategorize.dat27 ?B a\(b\)*\1 a NOMATCH EXPECTED
28 |B a\(b\)*\1 a (0,1) BUG=nomatch-match
29 |B a\(b\)*\1 abab (0,2)(1,2) # BUG=repeat-any
36 ?B a\(b\)*\1 abab NOMATCH EXPECTED
37 |B a\(b\)*\1 abab (0,1) # BUG=nomatch-match
38 |B a\(b\)*\1 abab (0,2)(1,2) BUG=repeat-any
55 ?B \(a\(b\)*\)*\2 abab NOMATCH EXPECTED
56 |B \(a\(b\)*\)*\2 abab (0,4)(2,3)(1,2) BUG=repeat-artifact-nomatch
/l4re-core-master/lua/lib/contrib/src/
A Dlauxlib.c515 #define buffonstack(B) ((B)->b != (B)->init.b) argument
523 lua_assert(buffonstack(B) ? lua_touserdata(B->L, idx) != NULL \
524 : lua_touserdata(B->L, idx) == (void*)B)
548 if (B->size - B->n >= sz) /* enough space? */ in prepbuffsize()
549 return B->b + B->n; in prepbuffsize()
565 B->b = newbuff; in prepbuffsize()
596 lua_pushlstring(L, B->b, B->n); in luaL_pushresult()
597 if (buffonstack(B)) in luaL_pushresult()
630 B->L = L; in luaL_buffinit()
631 B->b = B->init.b; in luaL_buffinit()
[all …]
A Dlauxlib.h199 #define luaL_addchar(B,c) \ argument
200 ((void)((B)->n < (B)->size || luaL_prepbuffsize((B), 1)), \
201 ((B)->b[(B)->n++] = (c)))
203 #define luaL_addsize(B,s) ((B)->n += (s)) argument
205 #define luaL_buffsub(B,s) ((B)->n -= (s)) argument
207 LUALIB_API void (luaL_buffinit) (lua_State *L, luaL_Buffer *B);
208 LUALIB_API char *(luaL_prepbuffsize) (luaL_Buffer *B, size_t sz);
210 LUALIB_API void (luaL_addstring) (luaL_Buffer *B, const char *s);
211 LUALIB_API void (luaL_addvalue) (luaL_Buffer *B);
212 LUALIB_API void (luaL_pushresult) (luaL_Buffer *B);
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/extra/scripts/
A Dunifdef.test3 #if defined A && defined B
6 #if defined A && B
15 #if defined B && defined A
18 #if B && defined A
35 #if defined B || !defined A
38 #if !defined A || defined B
43 #if defined A || defined B
46 #if defined B || defined A
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/sparc/soft-fp/
A Dq_feq.c28 FP_DECL_Q(A); FP_DECL_Q(B); in _Q_feq()
32 FP_UNPACK_RAW_Q(B, b); in _Q_feq()
33 FP_CMP_EQ_Q(r, A, B); in _Q_feq()
34 if (r && (FP_ISSIGNAN_Q(A) || FP_ISSIGNAN_Q(B))) in _Q_feq()
A Dq_fne.c28 FP_DECL_Q(A); FP_DECL_Q(B); in _Q_fne()
32 FP_UNPACK_RAW_Q(B, b); in _Q_fne()
33 FP_CMP_EQ_Q(r, A, B); in _Q_fne()
34 if (r && (FP_ISSIGNAN_Q(A) || FP_ISSIGNAN_Q(B))) in _Q_fne()
A Dq_cmp.c28 FP_DECL_Q(A); FP_DECL_Q(B); in _Q_cmp()
32 FP_UNPACK_RAW_Q(B, b); in _Q_cmp()
33 FP_CMP_Q(r, B, A, 3); in _Q_cmp()
35 if (r == 3 && (FP_ISSIGNAN_Q(A) || FP_ISSIGNAN_Q(B))) in _Q_cmp()
A Dq_fge.c28 FP_DECL_Q(A); FP_DECL_Q(B); in _Q_fge()
32 FP_UNPACK_RAW_Q(B, b); in _Q_fge()
33 FP_CMP_Q(r, B, A, 3); in _Q_fge()
A Dq_fgt.c28 FP_DECL_Q(A); FP_DECL_Q(B); in _Q_fgt()
32 FP_UNPACK_RAW_Q(B, b); in _Q_fgt()
33 FP_CMP_Q(r, B, A, 3); in _Q_fgt()
A Dq_fle.c28 FP_DECL_Q(A); FP_DECL_Q(B); in _Q_fle()
32 FP_UNPACK_RAW_Q(B, b); in _Q_fle()
33 FP_CMP_Q(r, B, A, -2); in _Q_fle()
A Dq_flt.c28 FP_DECL_Q(A); FP_DECL_Q(B); in _Q_flt()
32 FP_UNPACK_RAW_Q(B, b); in _Q_flt()
33 FP_CMP_Q(r, B, A, 3); in _Q_flt()
A Dq_cmpe.c29 FP_DECL_Q(A); FP_DECL_Q(B); in _Q_cmpe()
33 FP_UNPACK_RAW_Q(B, b); in _Q_cmpe()
34 FP_CMP_Q(r, B, A, 3); in _Q_cmpe()
A Dq_add.c28 FP_DECL_Q(A); FP_DECL_Q(B); FP_DECL_Q(C); in _Q_add()
33 FP_UNPACK_SEMIRAW_Q(B, b); in _Q_add()
34 FP_ADD_Q(C, A, B); in _Q_add()
A Dq_div.c28 FP_DECL_Q(A); FP_DECL_Q(B); FP_DECL_Q(C); in _Q_div()
33 FP_UNPACK_Q(B, b); in _Q_div()
34 FP_DIV_Q(C, A, B); in _Q_div()
A Dq_mul.c28 FP_DECL_Q(A); FP_DECL_Q(B); FP_DECL_Q(C); in _Q_mul()
33 FP_UNPACK_Q(B, b); in _Q_mul()
34 FP_MUL_Q(C, A, B); in _Q_mul()
A Dq_sub.c28 FP_DECL_Q(A); FP_DECL_Q(B); FP_DECL_Q(C); in _Q_sub()
33 FP_UNPACK_SEMIRAW_Q(B, b); in _Q_sub()
34 FP_SUB_Q(C, A, B); in _Q_sub()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/bfin/
A Dmemmove.S74 .Lbyte2_s: R1 = B[P3++](Z);
75 .Lbyte2_e: B[P0++] = R1;
84 R1 = B[P3--] (Z);
92 .Lol_s: B[P0--] = R1;
93 .Lol_e: R1 = B[P3--] (Z);
94 .Lno_loop: B[P0] = R1;
A Dmemset.S33 R1 = R1.B (Z); /* R1 = fill char */
67 B[P0++] = R1;
79 B[P0++] = R1;
84 B[P0++] = R1;
85 B[P0++] = R1;
A Dstrcmp.S94 r1 = B[p1++] (Z);
95 r2 = B[p2++] (Z);
101 r3 = r2 - r1 (NS) || r1 = B[p1++] (Z) || nop;
107 r2 = B[p2++] (Z);
111 r1=B[p1+ -2] (Z);
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/bits/
A DuClibc_va_copy.h29 #define va_copy(A,B) __va_copy(A,B) argument
34 #define va_copy(A,B) A = B argument
/l4re-core-master/uclibc/lib/contrib/uclibc/extra/locale/
A Dlocale_mmap.h18 #define __PASTE2(A,B) A ## B argument
20 #define __PASTE3(A,B,C) A ## B ## C argument
/l4re-core-master/uclibc/lib/contrib/uclibc/test/misc/
A Dtst-fnmatch.input27 # B.6 004(C)
34 # B.6 005(C)
39 # B.6 006(C)
43 # B.6 007(C)
50 # B.6 009(C)
58 # B.6 010(C)
63 # B.6 011(C)
72 # B.6 012(C)
81 # B.6 013(C)
87 # B.6 015(C)
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/metag/
A Dclone.S86 B _exit@PLT
88 B _exit
94 B ___syscall_error@PLT
96 B ___syscall_error

Completed in 26 milliseconds

12345