Home
last modified time | relevance | path

Searched refs:y (Results 1 – 25 of 433) sorted by relevance

12345678910>>...18

/f-stack/freebsd/arm/include/
H A Dasm.h110 #define EENTRY(y) _EENTRY(_C_LABEL(y)); argument
111 #define ENTRY_NP(y) _ENTRY(_C_LABEL(y)) argument
112 #define EENTRY_NP(y) _EENTRY(_C_LABEL(y)) argument
113 #define END(y) _END(_C_LABEL(y)) argument
114 #define EEND(y) _EEND(_C_LABEL(y)) argument
123 #define ASEND(y) _END(_ASM_LABEL(y)) argument
124 #define ASLEND(y) _LEND(_ASM_LABEL(y)) argument
125 #define ASEEND(y) _EEND(_ASM_LABEL(y)) argument
126 #define ASLEEND(y) _LEEND(_ASM_LABEL(y)) argument
150 #define PIC_SYM(x,y) x ## ( ## y ## ) argument
[all …]
/f-stack/app/redis-5.0.5/src/
H A Dgeohash.c62 y = (y | (y << S[4])) & B[4]; in interleave64()
65 y = (y | (y << S[3])) & B[3]; in interleave64()
68 y = (y | (y << S[2])) & B[2]; in interleave64()
71 y = (y | (y << S[1])) & B[1]; in interleave64()
74 y = (y | (y << S[0])) & B[0]; in interleave64()
92 y = (y | (y >> S[0])) & B[0]; in deinterleave64()
95 y = (y | (y >> S[1])) & B[1]; in deinterleave64()
98 y = (y | (y >> S[2])) & B[2]; in deinterleave64()
101 y = (y | (y >> S[3])) & B[3]; in deinterleave64()
104 y = (y | (y >> S[4])) & B[4]; in deinterleave64()
[all …]
H A Dlolwut5.c94 y < 0 || y >= canvas->height) return; in lwDrawPixel()
95 canvas->pixels[x+y*canvas->width] = color; in lwDrawPixel()
99 int lwGetPixel(lwCanvas *canvas, int x, int y) { in lwGetPixel() argument
101 y < 0 || y >= canvas->height) return 0; in lwGetPixel()
102 return canvas->pixels[x+y*canvas->width]; in lwGetPixel()
161 py[j] = round(cos(k) * size + y); in lwDrawSquare()
185 for (int y = 0; y < squares_per_col; y++) { in lwDrawSchotter() local
192 if (y > 1) { in lwDrawSchotter()
217 for (int y = 0; y < canvas->height; y += 4) { in lwRenderCanvas() local
222 if (lwGetPixel(canvas,x,y)) byte |= (1<<0); in lwRenderCanvas()
[all …]
H A Drand.c50 #define MUL(x, y, z) { int32_t l = (long)(x) * (long)(y); \ argument
52 #define CARRY(x, y) ((int32_t)(x) + (long)(y) > MASK) argument
53 #define ADDEQU(x, y, z) (z = CARRY(x, (y)), x = LOW(x + (y))) argument
62 #define SETLOW(x, y, n) SET3(x, LOW((y)[n]), LOW((y)[(n)+1]), LOW((y)[(n)+2])) argument
H A Dsds.c1195 sdslen(y) == 1 && memcmp(y,"i\0",2) == 0) in sdsTest()
1197 sdsfree(y); in sdsTest()
1201 sdslen(y) == 3 && memcmp(y,"iao\0",4) == 0) in sdsTest()
1203 sdsfree(y); in sdsTest()
1207 sdslen(y) == 2 && memcmp(y,"ao\0",3) == 0) in sdsTest()
1209 sdsfree(y); in sdsTest()
1213 sdslen(y) == 0 && memcmp(y,"\0",1) == 0) in sdsTest()
1215 sdsfree(y); in sdsTest()
1219 sdslen(y) == 3 && memcmp(y,"iao\0",4) == 0) in sdsTest()
1221 sdsfree(y); in sdsTest()
[all …]
/f-stack/tools/compat/
H A Dcompat.h45 #define rounddown(x, y) (((x)/(y))*(y)) argument
49 #define rounddown2(x, y) ((x)&(~((y)-1))) /* if y is power of two */ argument
53 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) /* to any y */ argument
57 #define roundup2(x, y) (((x)+((y)-1))&(~((y)-1))) /* if y is powers of two */ argument
/f-stack/freebsd/tools/sound/
H A Dsnd_fxdiv_gen.awk42 while (y > 0) {
44 y--;
51 while (y > 0 && x != 0) {
53 y--;
58 function calcdiv(r, x, y, z)
60 y = floor(FXONE / x);
63 while (shr((y * x), z) < 1)
64 y++;
66 while ((y % 2) == 0 && z > 0) {
67 y = floor(y / 2);
[all …]
/f-stack/app/redis-5.0.5/deps/lua/test/
H A Dlife.lua18 for y=1,h do
19 t[y] = {}
21 t[y][x]=0
31 for y=0,shape.h-1 do
33 self[top+y][left+x] = shape[y*shape.w+x+1]
40 local ym1,y,yp1,yi=self.h-1,self.h,1,self.h
45 self[y][xm1] + self[y][xp1] +
47 next[y][x] = ((sum==2) and self[y][x]) or ((sum==3) and 1) or 0
50 ym1,y,yp1,yi = y,yp1,yp1+1,yi-1
57 for y=1,self.h do
[all …]
H A Dfib.lua17 local y=c[x]
18 if not y then
19 y=f(x)
20 c[x]=y
22 return y
/f-stack/freebsd/contrib/dev/acpica/compiler/
H A Daslparser.y224 m4_include(asltokens.y)
228 m4_include(asltypes.y)
233 m4_include(aslrules.y)
234 m4_include(aslprimaries.y)
235 m4_include(aslcstyle.y)
236 m4_include(aslkeywords.y)
237 m4_include(aslresources.y)
238 m4_include(aslhelpers.y)
245 m4_include(aslsupport.y)
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_verify/sodium/
H A Dverify.c45 const volatile __m128i *volatile y = in crypto_verify_n() local
48 v2 = _mm_loadu_si128((const __m128i *) &y[0]); in crypto_verify_n()
52 v2 = _mm_loadu_si128((const __m128i *) &y[i]); in crypto_verify_n()
69 const volatile unsigned char *volatile y = in crypto_verify_n() local
75 d |= x[i] ^ y[i]; in crypto_verify_n()
83 crypto_verify_16(const unsigned char *x, const unsigned char *y) in crypto_verify_16() argument
85 return crypto_verify_n(x, y, crypto_verify_16_BYTES); in crypto_verify_16()
89 crypto_verify_32(const unsigned char *x, const unsigned char *y) in crypto_verify_32() argument
91 return crypto_verify_n(x, y, crypto_verify_32_BYTES); in crypto_verify_32()
95 crypto_verify_64(const unsigned char *x, const unsigned char *y) in crypto_verify_64() argument
[all …]
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/
H A Du8.h375 z##A = _mm256_unpacklo_epi64(y##A, y##B); \
376 z##B = _mm256_unpackhi_epi64(y##A, y##B); \
377 z##C = _mm256_unpacklo_epi64(y##C, y##D); \
378 z##D = _mm256_unpackhi_epi64(y##C, y##D); \
413 y##A = _mm256_unpacklo_epi32(z##A, z##B); \
414 y##B = _mm256_unpacklo_epi32(z##C, z##D); \
417 z##A = _mm256_unpacklo_epi64(y##A, y##B); \
418 z##B = _mm256_unpackhi_epi64(y##A, y##B); \
419 z##C = _mm256_unpacklo_epi64(y##C, y##D); \
420 z##D = _mm256_unpackhi_epi64(y##C, y##D); \
[all …]
/f-stack/freebsd/contrib/ck/src/
H A Dck_internal.h64 ck_internal_max(unsigned long x, unsigned long y) in ck_internal_max() argument
67 return x ^ ((x ^ y) & -(x < y)); in ck_internal_max()
71 ck_internal_max_64(uint64_t x, uint64_t y) in ck_internal_max_64() argument
74 return x ^ ((x ^ y) & -(x < y)); in ck_internal_max_64()
78 ck_internal_max_32(uint32_t x, uint32_t y) in ck_internal_max_32() argument
81 return x ^ ((x ^ y) & -(x < y)); in ck_internal_max_32()
/f-stack/freebsd/sys/
H A Dparam.h304 #define howmany(x, y) (((x)+((y)-1))/(y)) argument
307 #define rounddown(x, y) (((x)/(y))*(y)) argument
308 #define rounddown2(x, y) ((x)&(~((y)-1))) /* if y is power of two */ argument
309 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) /* to any y */ argument
310 #define roundup2(x, y) (((x)+((y)-1))&(~((y)-1))) /* if y is powers of two */ argument
/f-stack/freebsd/contrib/device-tree/Bindings/iio/accel/
H A Dlis302.txt25 x/y/z axis.
28 x/y/z axis.
29 - st,click-thresh-{x,y,z}: set the x/y/z axis threshold
47 - st,wakeup-{x,y,z}-{lo,hi}: set wakeup condition on x/y/z axis for
50 - st,wakeup2-{x,y,z}-{lo,hi}: set wakeup condition on x/y/z axis for
61 - st,{min,max}-limit-{x,y,z} set the min/max limits for x/y/z axis
75 st,click-single-y;
84 st,wakeup-y-lo;
85 st,wakeup-y-hi;
108 st,wakeup-y-lo;
[all …]
/f-stack/freebsd/contrib/openzfs/include/os/linux/spl/sys/
H A Dsysmacros.h144 #define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y)) argument
147 #define howmany(x, y) (((x) + ((y) - 1)) / (y)) argument
154 #define P2CROSS(x, y, align) (((x) ^ (y)) > (align) - 1) argument
187 #define P2CROSS_TYPED(x, y, align, type) \ argument
188 (((type)(x) ^ (type)(y)) > (type)(align) - 1)
189 #define P2SAMEHIGHBIT_TYPED(x, y, type) \ argument
190 (((type)(x) ^ (type)(y)) < ((type)(x) & (type)(y)))
H A Ddebug.h126 #define _CTASSERT(x, y) __CTASSERT(x, y) argument
127 #define __CTASSERT(x, y) \ argument
129 __compile_time_assertion__ ## y[(x) ? 1 : -1]
137 #define ASSERT3B(x,y,z) ((void)0) argument
138 #define ASSERT3S(x,y,z) ((void)0) argument
139 #define ASSERT3U(x,y,z) ((void)0) argument
140 #define ASSERT3P(x,y,z) ((void)0) argument
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dvdev_raidz_math_impl.h71 a = gf_exp2(x + 255 - y); in raidz_rec_pq_coeff()
839 for (; y < yend; y += SYN_STRIDE) { in raidz_syn_pq_abd()
867 LOAD(y, REC_PQ_Y); in raidz_rec_pq_abd()
883 STORE(y, REC_PQ_X); in raidz_rec_pq_abd()
1000 for (; y < yend; y += SYN_STRIDE) { in raidz_syn_pr_abd()
1028 LOAD(y, REC_PR_Y); in raidz_rec_pr_abd()
1043 STORE(y, REC_PR_X); in raidz_rec_pr_abd()
1192 LOAD(y, REC_QR_Y); in raidz_rec_qr_abd()
1210 STORE(y, REC_QR_T); in raidz_rec_qr_abd()
1333 for (; y < yend; y += SYN_STRIDE, z += SYN_STRIDE) { in raidz_syn_pqr_abd()
[all …]
/f-stack/freebsd/contrib/device-tree/Bindings/input/touchscreen/
H A Dtouchscreen.yaml18 touchscreen-min-y:
19 description: minimum y coordinate reported
27 touchscreen-size-y:
44 touchscreen-fuzz-y:
62 touchscreen-inverted-y:
66 touchscreen-swapped-x-y:
75 touchscreen-y-mm:
80 touchscreen-size-x: [ touchscreen-size-y ]
81 touchscreen-size-y: [ touchscreen-size-x ]
82 touchscreen-x-mm: [ touchscreen-y-mm ]
[all …]
H A Dmms114.txt11 - touchscreen-size-y: See [1]
15 - touchscreen-fuzz-y: See [1]
18 - touchscreen-inverted-y: See [1]
19 - touchscreen-swapped-x-y: See [1]
33 touchscreen-size-y = <1280>;
35 touchscreen-fuzz-y = <10>;
38 touchscreen-inverted-y;
H A Dbu21013.txt14 - touchscreen-size-y : General touchscreen binding, see [1].
16 - touchscreen-inverted-y : General touchscreen binding, see [1].
17 - touchscreen-swapped-x-y : General touchscreen binding, see [1].
24 - rohm,touch-max-y : Maximum outward permitted limit in the Y axis
26 - rohm,flip-y : Flip touch coordinates on the Y axis
40 touchscreen-size-y = <704>;
41 touchscreen-inverted-y;
H A Deeti,exc3000.yaml28 touchscreen-size-y: true
30 touchscreen-inverted-y: true
31 touchscreen-swapped-x-y: true
38 - touchscreen-size-y
54 touchscreen-size-y = <4096>;
56 touchscreen-swapped-x-y;
/f-stack/app/redis-5.0.5/deps/hiredis/
H A Dsds.c1171 sdslen(y) == 1 && memcmp(y,"i\0",2) == 0) in sdsTest()
1173 sdsfree(y); in sdsTest()
1177 sdslen(y) == 3 && memcmp(y,"iao\0",4) == 0) in sdsTest()
1179 sdsfree(y); in sdsTest()
1183 sdslen(y) == 2 && memcmp(y,"ao\0",3) == 0) in sdsTest()
1185 sdsfree(y); in sdsTest()
1189 sdslen(y) == 0 && memcmp(y,"\0",1) == 0) in sdsTest()
1191 sdsfree(y); in sdsTest()
1195 sdslen(y) == 3 && memcmp(y,"iao\0",4) == 0) in sdsTest()
1197 sdsfree(y); in sdsTest()
[all …]
/f-stack/freebsd/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dsysmacros.h174 #define howmany(x, y) (((x)+((y)-1))/(y)) argument
175 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) argument
247 #define P2SAMEHIGHBIT(x, y) (((x) ^ (y)) < ((x) & (y))) argument
272 #define P2CROSS_TYPED(x, y, align, type) \ argument
273 (((type)(x) ^ (type)(y)) > (type)(align) - 1)
274 #define P2SAMEHIGHBIT_TYPED(x, y, type) \ argument
275 (((type)(x) ^ (type)(y)) < ((type)(x) & (type)(y)))
/f-stack/dpdk/drivers/net/ena/base/
H A Dena_plat_dpdk.h77 #define ENA_MAX_T(type, x, y) RTE_MAX((type)(x), (type)(y)) argument
78 #define ENA_MAX32(x, y) ENA_MAX_T(uint32_t, (x), (y)) argument
79 #define ENA_MAX16(x, y) ENA_MAX_T(uint16_t, (x), (y)) argument
80 #define ENA_MAX8(x, y) ENA_MAX_T(uint8_t, (x), (y)) argument
81 #define ENA_MIN_T(type, x, y) RTE_MIN((type)(x), (type)(y)) argument
82 #define ENA_MIN32(x, y) ENA_MIN_T(uint32_t, (x), (y)) argument
83 #define ENA_MIN16(x, y) ENA_MIN_T(uint16_t, (x), (y)) argument
84 #define ENA_MIN8(x, y) ENA_MIN_T(uint8_t, (x), (y)) argument

12345678910>>...18