Home
last modified time | relevance | path

Searched refs:cmp_0 (Results 1 – 2 of 2) sorted by relevance

/picolibc-3.5.0-3.4.0/newlib/libc/machine/spu/
Dstrchr.c44 vec_uint4 cmp_c, cmp_0; in strchr() local
61 cmp_0 = spu_and(spu_gather(spu_cmpeq(data, 0)), mask); in strchr()
63 cmp = spu_extract(spu_or(cmp_c, cmp_0), 0); in strchr()
68 cmp_0 = spu_gather(spu_cmpeq(data, 0)); in strchr()
70 cmp = spu_extract(spu_or(cmp_c, cmp_0), 0); in strchr()
79 result = spu_andc(result, spu_cmpgt(cmp_0, cmp_c)); in strchr()
Dstrrchr.c45 vec_uint4 cmp_c, cmp_0, cmp; in strrchr() local
63 cmp_0 = spu_and(spu_gather(spu_cmpeq(data, 0)), mask); in strrchr()
68 while (spu_extract(cmp_0, 0) == 0) { in strrchr()
77 cmp_0 = spu_gather(spu_cmpeq(data, 0)); in strrchr()
87 mask = spu_sl(one, 31 - spu_extract(spu_cntlz(cmp_0), 0)); in strrchr()