Home
last modified time | relevance | path

Searched refs:a (Results 76 – 100 of 4529) sorted by relevance

12345678910>>...182

/illumos-gate/usr/src/test/libc-tests/tests/regex/data/
H A Dcategorize.dat10 ?E ((a*)(ab)*)((b*)(a*)) aba (0,3)(0,2)(0,0)(0,2)(2,3)(2,2)(2,3) SUBEXPRESSION=precedence
11 |E ((a*)(ab)*)((b*)(a*)) aba (0,3)(0,1)(0,1)(?,?)(1,3)(1,2)(2,3) SUBEXPRESSION=grouping
23 ?E (aba|a*b)(aba|a*b) ababa (0,5)(0,2)(2,5) EXPECTED
24 |E (aba|a*b)(aba|a*b) ababa (0,4)(0,3)(3,4) BUG=first-match
27 ?B a\(b\)*\1 a NOMATCH EXPECTED
28 |B a\(b\)*\1 a (0,1) BUG=nomatch-match
36 ?B a\(b\)*\1 abab NOMATCH EXPECTED
41 ?E (a*)* a (0,1)(0,1) EXPECTED
43 |E (a*)* a (0,1)(1,1) BUG=repeat-null
51 ?E (a(b)?)+ aba (0,3)(2,3) EXPECTED
[all …]
H A Dforcedassoc.dat3 E (a|ab)(c|bcd) abcd (0,4)(0,1)(1,4)
4 E (a|ab)(bcd|c) abcd (0,4)(0,1)(1,4)
5 E (ab|a)(c|bcd) abcd (0,4)(0,1)(1,4)
6 E (ab|a)(bcd|c) abcd (0,4)(0,1)(1,4)
15 E (a*)(b|abc) abc (0,3)(0,0)(0,3)
16 E (a*)(abc|b) abc (0,3)(0,0)(0,3)
21 E (a*)(b|abc) abc (0,3)(0,0)(0,3)
27 E (a|ab) ab (0,2)(0,2)
28 E (ab|a) ab (0,2)(0,2)
29 E (a|ab)(b*) ab (0,2)(0,2)(2,2)
[all …]
/illumos-gate/usr/src/tools/smatch/src/validation/optim/
H A Dcanonical-cmp.c4 sint seq(sint p, sint a) { return (123 == p) ? a : 0; } in seq() argument
5 sint sne(sint p, sint a) { return (123 != p) ? a : 0; } in sne() argument
7 sint slt(sint p, sint a) { return (123 > p) ? a : 0; } in slt() argument
8 sint sle(sint p, sint a) { return (123 >= p) ? a : 0; } in sle() argument
9 sint sge(sint p, sint a) { return (123 <= p) ? a : 0; } in sge() argument
10 sint sgt(sint p, sint a) { return (123 < p) ? a : 0; } in sgt() argument
12 uint ueq(uint p, uint a) { return (123 == p) ? a : 0; } in ueq() argument
13 uint une(uint p, uint a) { return (123 != p) ? a : 0; } in une() argument
15 uint ubt(uint p, uint a) { return (123 > p) ? a : 0; } in ubt() argument
16 uint ube(uint p, uint a) { return (123 >= p) ? a : 0; } in ube() argument
[all …]
/illumos-gate/usr/src/cmd/sendmail/util/
H A DMakefile80 ../libsm/libsm.a
83 mail.local: mail.local.o ../libsmutil/libsmutil.a ../libsm/libsm.a
85 ../libsm/libsm.a
92 makemap: makemap.o ../libsmutil/libsmutil.a ../libsmdb/libsmdb.a \
93 ../db/libdb.a ../libsm/libsm.a
95 ../libsmutil/libsmutil.a ../db/libdb.a ../libsm/libsm.a
98 editmap: editmap.o ../libsmutil/libsmutil.a ../libsmdb/libsmdb.a \
99 ../db/libdb.a ../libsm/libsm.a
101 ../libsmutil/libsmutil.a ../db/libdb.a ../libsm/libsm.a
107 ../libsmutil/libsmutil.a ../db/libdb.a ../libsm/libsm.a
[all …]
/illumos-gate/usr/src/lib/cfgadm_plugins/sbd/common/
H A Dap.c106 a->drv, a->inst, a->minor); in ap_logid()
159 if ((a->target = strdup(a->path)) == NULL) { in ap_parse()
240 if (phys != 0 && (a->target = ap_logid(a, a->path)) == NULL) { in ap_parse()
277 if ((a->cname = strdup(a->cid)) == NULL) in ap_parse()
285 ap_err(a, ERR_CM_INVAL, a->cid); in ap_parse()
292 DBG("path=<%s> ", a->path ? a->path : ""); in ap_parse()
294 a->drv ? a->drv : "", a->inst, a->minor ? a->minor : ""); in ap_parse()
295 DBG("target=<%s>\n", a->target ? a->target : ""); in ap_parse()
296 DBG("cid=<%s> ", a->cid ? a->cid : ""); in ap_parse()
297 DBG("cname=<%s> ", a->cname ? a->cname : ""); in ap_parse()
[all …]
/illumos-gate/usr/src/lib/libsqlite/test/
H A Dnotnull.test5 # a legal notice, here is a blessing:
24 a NOT NULL,
46 } {1 {t1.a may not be NULL}}
60 } {1 {t1.a may not be NULL}}
67 } {1 {t1.a may not be NULL}}
185 UPDATE t1 SET a=null;
249 UPDATE t1 SET d=null, a=b, b=a;
257 UPDATE t1 SET e=null, a=b, b=a;
424 UPDATE t1 SET a=null;
488 UPDATE t1 SET d=null, a=b, b=a;
[all …]
/illumos-gate/usr/src/lib/libsasl/lib/
H A Dmd5.c111 #define FF(a, b, c, d, x, s, ac) { (a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); (a) = ROTATE_LEFT … argument
112 #define GG(a, b, c, d, x, s, ac) { (a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); (a) … argument
113 #define HH(a, b, c, d, x, s, ac) { (a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); (a) … argument
114 #define II(a, b, c, d, x, s, ac) { (a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); (a) … argument
217 FF (a, b, c, d, x[ 0], S11, 0xd76aa478); /* 1 */
246 GG (b, c, d, a, x[ 8], S24, 0x455a14ed); /* 28 */
247 GG (a, b, c, d, x[13], S21, 0xa9e3e905); /* 29 */
248 GG (d, a, b, c, x[ 2], S22, 0xfcefa3f8); /* 30 */
249 GG (c, d, a, b, x[ 7], S23, 0x676f02d9); /* 31 */
250 GG (b, c, d, a, x[12], S24, 0x8d2a4c8a); /* 32 */
[all …]
/illumos-gate/usr/src/lib/libmp/common/
H A Dold_mp.c29 void gcd(MINT *a, MINT *b, MINT *c) { mp_gcd(a, b, c); } in gcd() argument
31 void madd(MINT *a, MINT *b, MINT *c) { mp_madd(a, b, c); } in madd() argument
33 void msub(MINT *a, MINT *b, MINT *c) { mp_msub(a, b, c); } in msub() argument
39 int min(MINT *a) { return (mp_min(a)); } in min() argument
41 void mout(MINT *a) { mp_mout(a); } in mout() argument
43 int msqrt(MINT *a, MINT *b, MINT *r) { return (mp_msqrt(a, b, r)); } in msqrt() argument
45 void mult(MINT *a, MINT *b, MINT *c) { mp_mult(a, b, c); } in mult() argument
47 void pow(MINT *a, MINT *b, MINT *c, MINT *d) { mp_pow(a, b, c, d); } in pow() argument
49 void rpow(MINT *a, short n, MINT *b) { mp_rpow(a, n, b); } in rpow() argument
53 int mcmp(MINT *a, MINT *b) { return (mp_mcmp(a, b)); } in mcmp() argument
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libsum/
H A Dsum-ast4.c56 a->tot.sum0 ^= a->cur.sum0; in ast4_init()
57 a->cur.sum0 = 0; in ast4_init()
58 a->tot.sum1 ^= a->cur.sum1; in ast4_init()
59 a->cur.sum1 = 0; in ast4_init()
60 a->tot.sum2 ^= a->cur.sum2; in ast4_init()
62 a->tot.sum3 ^= a->cur.sum3; in ast4_init()
91 a->sum0 = a->sum0 * 0x63c63cd9 + 0x9c39c33d + c; in ast4_block()
92 a->sum1 = a->sum1 * 0x00000011 + 0x00017cfb + c; in ast4_block()
93 a->sum2 = a->sum2 * 0x12345679 + 0x3ade68b1 + c; in ast4_block()
94 a->sum3 = a->sum3 * 0xf1eac01d + 0xcafe10af + c; in ast4_block()
[all …]
/illumos-gate/usr/src/test/util-tests/tests/grep_xpg4/files/
H A Dgout.t1.117 test0-a
172 test2-a
185 test2-a
198 test2-a
214 test3-a
220 test3-a
229 test4-a
242 test4-a
255 test4-a
263 test4-a
[all …]
H A Dgout.t1.127 test0-7-a
172 test2-7-a
185 test2-20-a
198 test2-33-a
214 test3-7-a
220 test3-13-a
229 test4-7-a
242 test4-20-a
255 test4-33-a
263 test4-41-a
[all …]
H A Dgout.t1.257 test0-a
174 test2-a
187 test2-a
200 test2-a
216 test3-a
222 test3-a
231 test4-a
244 test4-a
257 test4-a
265 test4-a
[all …]
H A Dgout.t1.267 test0-7-a
174 test2-7-a
187 test2-20-a
200 test2-33-a
216 test3-7-a
222 test3-13-a
231 test4-7-a
244 test4-20-a
257 test4-33-a
265 test4-41-a
[all …]
H A Dgout.t1.327 test0-a
174 test2-a
187 test2-a
200 test2-a
216 test3-a
222 test3-a
231 test4-a
244 test4-a
257 test4-a
265 test4-a
[all …]
H A Dgout.t1.337 test0-7-a
174 test2-7-a
187 test2-20-a
200 test2-33-a
216 test3-7-a
222 test3-13-a
231 test4-7-a
244 test4-20-a
257 test4-33-a
265 test4-41-a
[all …]
H A Dgout.t1.397 test0-a
174 test2-a
187 test2-a
200 test2-a
216 test3-a
222 test3-a
231 test4-a
244 test4-a
257 test4-a
265 test4-a
[all …]
H A Dgout.t1.407 test0-7-a
174 test2-7-a
187 test2-20-a
200 test2-33-a
216 test3-7-a
222 test3-13-a
231 test4-7-a
244 test4-20-a
257 test4-33-a
265 test4-41-a
[all …]
H A Dgout.t1.467 test0-a
174 test2-a
187 test2-a
200 test2-a
216 test3-a
222 test3-a
231 test4-a
244 test4-a
257 test4-a
265 test4-a
[all …]
H A Dgout.t1.477 test0-7-a
174 test2-7-a
187 test2-20-a
200 test2-33-a
216 test3-7-a
222 test3-13-a
231 test4-7-a
244 test4-20-a
257 test4-33-a
265 test4-41-a
[all …]
H A Dgout.t1.497 test0:a
174 test2:a
187 test2:a
200 test2:a
216 test3:a
222 test3:a
231 test4:a
244 test4:a
257 test4:a
265 test4:a
[all …]
H A Dgout.t1.507 test0:7:a
174 test2:7:a
187 test2:20:a
200 test2:33:a
216 test3:7:a
222 test3:13:a
231 test4:7:a
244 test4:20:a
257 test4:33:a
265 test4:41:a
[all …]
H A Dgout.t1.537 test0-a
174 test2-a
187 test2-a
200 test2-a
216 test3-a
222 test3-a
231 test4-a
244 test4-a
257 test4-a
265 test4-a
[all …]
H A Dgout.t1.547 test0-7-a
174 test2-7-a
187 test2-20-a
200 test2-33-a
216 test3-7-a
222 test3-13-a
231 test4-7-a
244 test4-20-a
257 test4-33-a
265 test4-41-a
[all …]
H A Dgout.t1.607 test0-a
174 test2-a
187 test2-a
200 test2-a
216 test3-a
222 test3-a
231 test4-a
244 test4-a
257 test4-a
265 test4-a
[all …]
H A Dgout.t1.617 test0-7-a
174 test2-7-a
187 test2-20-a
200 test2-33-a
216 test3-7-a
222 test3-13-a
231 test4-7-a
244 test4-20-a
257 test4-33-a
265 test4-41-a
[all …]

12345678910>>...182