Home
last modified time | relevance | path

Searched refs:here (Results 1 - 25 of 254) sorted by relevance

1234567891011

/third_party/lame/libmp3lame/i386/
H A Dnasm.h217 %%here:
218 times (($$-%%here) & 15 & ge1(($$-%%here) & 15) & ~ge4(($$-%%here) & 15)) nop
219 times (1 & ge4(($$-%%here) & 15) & ~ge%1(($$-%%here) & 15)) jmp short %%skip
220 times (((($$-%%here) & 15)-2) & ge4(($$-%%here) & 15) & ~ge%1(($$-%%here) & 15)) nop
225 %%here
[all...]
/third_party/node/deps/zlib/contrib/optimizations/
H A Dinffast_chunk.c96 code const *here; /* retrieved table entry */ in inflate_fast_chunk_() local
148 here = lcode + (hold & lmask); in inflate_fast_chunk_()
150 if (here->op == 0) { /* literal */ in inflate_fast_chunk_()
151 Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ? in inflate_fast_chunk_()
153 "inflate: literal 0x%02x\n", here->val)); in inflate_fast_chunk_()
154 *out++ = (unsigned char)(here->val); in inflate_fast_chunk_()
155 hold >>= here->bits; in inflate_fast_chunk_()
156 bits -= here->bits; in inflate_fast_chunk_()
157 here in inflate_fast_chunk_()
[all...]
/third_party/libwebsockets/win32port/zlib/
H A Dinfback.c256 code here; /* current decoding table entry */ local
392 here = state->lencode[BITS(state->lenbits)];
393 if ((unsigned)(here.bits) <= bits) break;
396 if (here.val < 16) {
397 NEEDBITS(here.bits);
398 DROPBITS(here.bits);
399 state->lens[state->have++] = here.val;
402 if (here.val == 16) {
403 NEEDBITS(here.bits + 2);
404 DROPBITS(here
[all...]
H A Dinftrees.c53 code here; /* table entry for duplication */ local
118 here.op = (unsigned char)64; /* invalid code marker */
119 here.bits = (unsigned char)1;
120 here.val = (unsigned short)0;
121 *(*table)++ = here; /* make a table to force an error */
122 *(*table)++ = here;
216 here.bits = (unsigned char)(len - drop);
218 here.op = (unsigned char)0;
219 here.val = work[sym];
222 here
[all...]
H A Dinffast.c90 code here; /* retrieved table entry */ local
127 here = lcode[hold & lmask];
129 op = (unsigned)(here.bits);
132 op = (unsigned)(here.op);
134 Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
136 "inflate: literal 0x%02x\n", here.val));
137 PUP(out) = (unsigned char)(here.val);
140 len = (unsigned)(here.val);
158 here
[all...]
H A Dinflate.c602 code here; /* current decoding table entry */ local
923 here = state->lencode[BITS(state->lenbits)];
924 if ((unsigned)(here.bits) <= bits) break;
927 if (here.val < 16) {
928 NEEDBITS(here.bits);
929 DROPBITS(here.bits);
930 state->lens[state->have++] = here.val;
933 if (here.val == 16) {
934 NEEDBITS(here.bits + 2);
935 DROPBITS(here
[all...]
/third_party/zlib/contrib/infback9/
H A Dinfback9.c235 code here; /* current decoding table entry */ in inflateBack9() local
376 here = lencode[BITS(lenbits)]; in inflateBack9()
377 if ((unsigned)(here.bits) <= bits) break; in inflateBack9()
380 if (here.val < 16) { in inflateBack9()
381 NEEDBITS(here.bits); in inflateBack9()
382 DROPBITS(here.bits); in inflateBack9()
383 state->lens[state->have++] = here.val; in inflateBack9()
386 if (here.val == 16) { in inflateBack9()
387 NEEDBITS(here.bits + 2); in inflateBack9()
388 DROPBITS(here in inflateBack9()
[all...]
/third_party/node/deps/v8/third_party/zlib/
H A Dinfback.c265 code here; /* current decoding table entry */ local
401 here = state->lencode[BITS(state->lenbits)];
402 if ((unsigned)(here.bits) <= bits) break;
405 if (here.val < 16) {
406 DROPBITS(here.bits);
407 state->lens[state->have++] = here.val;
410 if (here.val == 16) {
411 NEEDBITS(here.bits + 2);
412 DROPBITS(here.bits);
422 else if (here
[all...]
H A Dinftrees.c53 code here; /* table entry for duplication */ local
118 here.op = (unsigned char)64; /* invalid code marker */
119 here.bits = (unsigned char)1;
120 here.val = (unsigned short)0;
121 *(*table)++ = here; /* make a table to force an error */
122 *(*table)++ = here;
216 here.bits = (unsigned char)(len - drop);
218 here.op = (unsigned char)0;
219 here.val = work[sym];
222 here
[all...]
H A Dinffast.c77 code const *here; /* retrieved table entry */ local
114 here = lcode + (hold & lmask);
116 op = (unsigned)(here->bits);
119 op = (unsigned)(here->op);
121 Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ?
123 "inflate: literal 0x%02x\n", here->val));
124 *out++ = (unsigned char)(here->val);
127 len = (unsigned)(here->val);
145 here
[all...]
/third_party/node/deps/zlib/
H A Dinfback.c252 code here; /* current decoding table entry */ in inflateBack() local
388 here = state->lencode[BITS(state->lenbits)]; in inflateBack()
389 if ((unsigned)(here.bits) <= bits) break; in inflateBack()
392 if (here.val < 16) { in inflateBack()
393 DROPBITS(here.bits); in inflateBack()
394 state->lens[state->have++] = here.val; in inflateBack()
397 if (here.val == 16) { in inflateBack()
398 NEEDBITS(here.bits + 2); in inflateBack()
399 DROPBITS(here.bits); in inflateBack()
409 else if (here in inflateBack()
[all...]
H A Dinftrees.c48 code here; /* table entry for duplication */ in inflate_table() local
113 here.op = (unsigned char)64; /* invalid code marker */ in inflate_table()
114 here.bits = (unsigned char)1; in inflate_table()
115 here.val = (unsigned short)0; in inflate_table()
116 *(*table)++ = here; /* make a table to force an error */ in inflate_table()
117 *(*table)++ = here; in inflate_table()
211 here.bits = (unsigned char)(len - drop); in inflate_table()
213 here.op = (unsigned char)0; in inflate_table()
214 here.val = work[sym]; in inflate_table()
217 here in inflate_table()
[all...]
H A Dinffast.c74 code const *here; /* retrieved table entry */ in inflate_fast() local
111 here = lcode + (hold & lmask); in inflate_fast()
113 op = (unsigned)(here->bits); in inflate_fast()
116 op = (unsigned)(here->op); in inflate_fast()
118 Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ? in inflate_fast()
120 "inflate: literal 0x%02x\n", here->val)); in inflate_fast()
121 *out++ = (unsigned char)(here->val); in inflate_fast()
124 len = (unsigned)(here->val); in inflate_fast()
142 here in inflate_fast()
[all...]
/third_party/skia/third_party/externals/zlib/
H A Dinfback.c265 code here; /* current decoding table entry */ local
401 here = state->lencode[BITS(state->lenbits)];
402 if ((unsigned)(here.bits) <= bits) break;
405 if (here.val < 16) {
406 DROPBITS(here.bits);
407 state->lens[state->have++] = here.val;
410 if (here.val == 16) {
411 NEEDBITS(here.bits + 2);
412 DROPBITS(here.bits);
422 else if (here
[all...]
H A Dinftrees.c53 code here; /* table entry for duplication */ local
118 here.op = (unsigned char)64; /* invalid code marker */
119 here.bits = (unsigned char)1;
120 here.val = (unsigned short)0;
121 *(*table)++ = here; /* make a table to force an error */
122 *(*table)++ = here;
216 here.bits = (unsigned char)(len - drop);
218 here.op = (unsigned char)0;
219 here.val = work[sym];
222 here
[all...]
H A Dinffast.c77 code here; /* retrieved table entry */ local
114 here = lcode[hold & lmask];
116 op = (unsigned)(here.bits);
119 op = (unsigned)(here.op);
121 Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
123 "inflate: literal 0x%02x\n", here.val));
124 *out++ = (unsigned char)(here.val);
127 len = (unsigned)(here.val);
145 here
[all...]
/third_party/zlib/
H A Dinfback.c252 code here; /* current decoding table entry */ in inflateBack() local
388 here = state->lencode[BITS(state->lenbits)]; in inflateBack()
389 if ((unsigned)(here.bits) <= bits) break; in inflateBack()
392 if (here.val < 16) { in inflateBack()
393 DROPBITS(here.bits); in inflateBack()
394 state->lens[state->have++] = here.val; in inflateBack()
397 if (here.val == 16) { in inflateBack()
398 NEEDBITS(here.bits + 2); in inflateBack()
399 DROPBITS(here.bits); in inflateBack()
409 else if (here in inflateBack()
[all...]
H A Dinftrees.c48 code here; /* table entry for duplication */ in inflate_table() local
113 here.op = (unsigned char)64; /* invalid code marker */ in inflate_table()
114 here.bits = (unsigned char)1; in inflate_table()
115 here.val = (unsigned short)0; in inflate_table()
116 *(*table)++ = here; /* make a table to force an error */ in inflate_table()
117 *(*table)++ = here; in inflate_table()
211 here.bits = (unsigned char)(len - drop); in inflate_table()
213 here.op = (unsigned char)0; in inflate_table()
214 here.val = work[sym]; in inflate_table()
217 here in inflate_table()
[all...]
H A Dinffast.c70 code const *here; /* retrieved table entry */ in inflate_fast() local
107 here = lcode + (hold & lmask); in inflate_fast()
109 op = (unsigned)(here->bits); in inflate_fast()
112 op = (unsigned)(here->op); in inflate_fast()
114 Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ? in inflate_fast()
116 "inflate: literal 0x%02x\n", here->val)); in inflate_fast()
117 *out++ = (unsigned char)(here->val); in inflate_fast()
120 len = (unsigned)(here->val); in inflate_fast()
138 here in inflate_fast()
[all...]
/third_party/node/deps/v8/third_party/zlib/contrib/optimizations/
H A Dinffast_chunk.c98 code const *here; /* retrieved table entry */ local
142 here = lcode + (hold & lmask);
144 op = (unsigned)(here->bits);
147 op = (unsigned)(here->op);
149 Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ?
151 "inflate: literal 0x%02x\n", here->val));
152 *out++ = (unsigned char)(here->val);
155 len = (unsigned)(here->val);
185 here
[all...]
/third_party/skia/third_party/externals/zlib/contrib/optimizations/
H A Dinffast_chunk.c98 code here; /* retrieved table entry */ local
142 here = lcode[hold & lmask];
144 op = (unsigned)(here.bits);
147 op = (unsigned)(here.op);
149 Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
151 "inflate: literal 0x%02x\n", here.val));
152 *out++ = (unsigned char)(here.val);
155 len = (unsigned)(here.val);
185 here
[all...]
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/
H A DLzcompCompress.java68 // If we want to do runlengths, here's the place, but I'm not convinced it's useful in write()
99 int here = i; in encode()
109 byte c = buf[here]; in encode()
110 if (here >= 2 && c == buf[here - 2]) { in encode()
112 } else if (here >= 4 && c == buf[here - 4]) { in encode()
114 } else if (here >= 6 && c == buf[here - 6]) { in encode()
117 symEncoder.writeSymbol(buf[here] in encode()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H A Dregexec.c75 /* do "if I'm here, I can also be there" etc without branches */
76 #define FWD(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) << (n))
77 #define BACK(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) >> (n))
78 #define ISSETBACK(v, n) (((v) & ((unsigned long)here >> (n))) != 0)
124 /* do "if I'm here, I can also be there" etc without branches */
125 #define FWD(dst, src, n) ((dst)[here+(n)] |= (src)[here])
126 #define BACK(dst, src, n) ((dst)[here-(n)] |= (src)[here])
127 #define ISSETBACK(v, n) ((v)[here
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A Dregexec.c75 /* do "if I'm here, I can also be there" etc without branches */
76 #define FWD(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) << (n))
77 #define BACK(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) >> (n))
78 #define ISSETBACK(v, n) (((v) & ((unsigned long)here >> (n))) != 0)
124 /* do "if I'm here, I can also be there" etc without branches */
125 #define FWD(dst, src, n) ((dst)[here+(n)] |= (src)[here])
126 #define BACK(dst, src, n) ((dst)[here-(n)] |= (src)[here])
127 #define ISSETBACK(v, n) ((v)[here
[all...]
/third_party/f2fs-tools/fsck/
H A Dxattr.c138 struct f2fs_xattr_entry *here, *last; in f2fs_setxattr() local
178 here = __find_xattr(base_addr, index, len, name); in f2fs_setxattr()
180 found = IS_XATTR_LAST_ENTRY(here) ? 0 : 1; in f2fs_setxattr()
190 last = here; in f2fs_setxattr()
205 free = free + ENTRY_SIZE(here); in f2fs_setxattr()
218 struct f2fs_xattr_entry *next = XATTR_NEXT_ENTRY(here); in f2fs_setxattr()
219 int oldsize = ENTRY_SIZE(here); in f2fs_setxattr()
221 memmove(here, next, (char *)last - (char *)next); in f2fs_setxattr()
233 * Before we come here, old entry is removed. in f2fs_setxattr()

Completed in 22 milliseconds

1234567891011