HomeSort by relevance Sort by last modified time
    Searched refs:LEN (Results 1 - 25 of 35) sorted by null

1 2

  /external/bison/lib/
strverscmp.c 34 /* result_type: CMP: return diff; LEN: compare using len_diff/diff */
36 #define LEN 3
85 /* S_N */ CMP, CMP, CMP, CMP, CMP, LEN, CMP, CMP,
87 /* S_I */ CMP, -1, -1, CMP, 1, LEN, LEN, CMP,
88 1, LEN, LEN, CMP, CMP, CMP, CMP, CMP,
89 /* S_F */ CMP, CMP, CMP, CMP, CMP, LEN, CMP, CMP,
118 case LEN:
  /external/blktrace/
strverscmp.c 79 /* result_type: CMP: return diff; LEN: compare using len_diff/diff */
81 #define LEN 3
113 /* S_N */ CMP, CMP, CMP, CMP, CMP, LEN, CMP, CMP,
115 /* S_I */ CMP, -1, -1, CMP, +1, LEN, LEN, CMP,
116 +1, LEN, LEN, CMP, CMP, CMP, CMP, CMP,
117 /* S_F */ CMP, CMP, CMP, CMP, CMP, LEN, CMP, CMP,
146 case LEN:
  /external/zlib/contrib/infback9/
inflate9.h 16 LEN, /* i: waiting for length/lit code */
27 TYPE -> STORED or TABLE or LEN or DONE
29 TABLE -> LENLENS -> CODELENS -> LEN
31 LEN -> LEN or TYPE
infback9.c 247 unsigned len; /* length to copy for repeats, bits to drop */ local
300 mode = LEN; /* decode codes */
405 len = (unsigned)(state->lens[state->have - 1]);
412 len = 0;
419 len = 0;
429 state->lens[state->have++] = (unsigned short)len;
467 mode = LEN;
469 case LEN:
497 mode = LEN;
  /external/chromium/net/third_party/nss/ssl/
ssltrace.c 69 void ssl_PrintBuf(sslSocket *ss, const char *msg, const void *vp, int len)
77 SSL_TRACE(("%d: SSL[%d]: %s [Len: %d]", SSL_GETPID(), ss->fd,
78 msg, len));
80 SSL_TRACE(("%d: SSL: %s [Len: %d]", SSL_GETPID(), msg, len));
85 while (--len >= 0) {
105 #define LEN(cp) (((cp)[0] << 8) | ((cp)[1]))
131 static void PrintBuf(sslSocket *ss, char *msg, unsigned char *cp, int len)
137 SSL_TRACE(("%d: SSL[%d]: %s [Len: %d]",
138 SSL_GETPID(), ss->fd, msg, len));
    [all...]
  /external/zlib/as400/
compile.clp 13 DCL VAR(&SRCLIB) TYPE(*CHAR) LEN(10) +
15 DCL VAR(&SRCFILE) TYPE(*CHAR) LEN(10) +
17 DCL VAR(&CTLFILE) TYPE(*CHAR) LEN(10) +
20 DCL VAR(&MODLIB) TYPE(*CHAR) LEN(10) +
23 DCL VAR(&SRVLIB) TYPE(*CHAR) LEN(10) +
32 DCL VAR(&CMDLEN) TYPE(*DEC) LEN(15 5) VALUE(300) /* Command length. */
33 DCL VAR(&CMD) TYPE(*CHAR) LEN(512)
  /external/zlib/old/as400/
compile.clp 13 DCL VAR(&SRCLIB) TYPE(*CHAR) LEN(10) +
15 DCL VAR(&SRCFILE) TYPE(*CHAR) LEN(10) +
17 DCL VAR(&CTLFILE) TYPE(*CHAR) LEN(10) +
20 DCL VAR(&MODLIB) TYPE(*CHAR) LEN(10) +
23 DCL VAR(&SRVLIB) TYPE(*CHAR) LEN(10) +
32 DCL VAR(&CMDLEN) TYPE(*DEC) LEN(15 5) VALUE(300) /* Command length. */
33 DCL VAR(&CMD) TYPE(*CHAR) LEN(512)
  /external/chromium/third_party/zlib/
inflate.h 39 LEN, /* i: waiting for length/lit code */
65 TYPE -> STORED or TABLE or LEN or CHECK
67 TABLE -> LENLENS -> CODELENS -> LEN
69 LEN -> LENEXT or LIT or TYPE
70 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
71 LIT -> LEN
infback.c 258 unsigned len; /* length to copy for repeats, bits to drop */ local
303 state->mode = LEN; /* decode codes */
410 len = (unsigned)(state->lens[state->have - 1]);
417 len = 0;
424 len = 0;
434 state->lens[state->have++] = (unsigned short)len;
462 state->mode = LEN;
464 case LEN:
502 state->mode = LEN;
inflate.c 49 * - Make op and len in inflate_fast() unsigned for consistency
101 unsigned len));
377 # define UPDATE(check, buf, len) \
378 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
380 # define UPDATE(check, buf, len) adler32(check, buf, len)
569 unsigned len; /* length to copy for repeats, bits to drop */ local
621 len = BITS(4) + 8;
622 if (len > state->wbits)
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
inflate.h 39 LEN, /* i: waiting for length/lit code */
65 TYPE -> STORED or TABLE or LEN or CHECK
67 TABLE -> LENLENS -> CODELENS -> LEN
69 LEN -> LENEXT or LIT or TYPE
70 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
71 LIT -> LEN
infback.c 258 unsigned len; /* length to copy for repeats, bits to drop */ local
303 state->mode = LEN; /* decode codes */
410 len = (unsigned)(state->lens[state->have - 1]);
417 len = 0;
424 len = 0;
434 state->lens[state->have++] = (unsigned short)len;
462 state->mode = LEN;
464 case LEN:
502 state->mode = LEN;
inflate.c 49 * - Make op and len in inflate_fast() unsigned for consistency
101 unsigned len));
377 # define UPDATE(check, buf, len) \
378 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
380 # define UPDATE(check, buf, len) adler32(check, buf, len)
569 unsigned len; /* length to copy for repeats, bits to drop */ local
621 len = BITS(4) + 8;
622 if (len > state->wbits)
    [all...]
  /external/zlib/
inflate.h 40 LEN_, /* i: same as LEN below, but only first time in */
41 LEN, /* i: waiting for length/lit/eob code */
71 LEN_ -> LEN
73 LEN -> LENEXT or LIT or TYPE
74 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
75 LIT -> LEN
infback.c 258 unsigned len; /* length to copy for repeats, bits to drop */ local
303 state->mode = LEN; /* decode codes */
410 len = (unsigned)(state->lens[state->have - 1]);
417 len = 0;
424 len = 0;
434 state->lens[state->have++] = (unsigned short)len;
471 state->mode = LEN;
473 case LEN:
511 state->mode = LEN;
inflate.c 49 * - Make op and len in inflate_fast() unsigned for consistency
101 unsigned len));
412 # define UPDATE(check, buf, len) \
413 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
415 # define UPDATE(check, buf, len) adler32(check, buf, len)
604 unsigned len; /* length to copy for repeats, bits to drop */ local
656 len = BITS(4) + 8;
658 state->wbits = len;
    [all...]
  /hardware/msm7k/librpc/rpc/
xdr.h 47 #define XDR_RECV_BYTES(XDR, BUF, LEN) (XDR)->xops->recv_bytes(XDR, BUF, LEN)
53 #define XDR_SEND_BYTES(XDR, BUF, LEN) (XDR)->xops->send_bytes(XDR, BUF, LEN)
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/config/arm/
aout.h 274 #define ASM_OUTPUT_ASCII(STREAM, PTR, LEN) \
275 output_ascii_pseudo_op (STREAM, (const unsigned char *) (PTR), LEN)
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/config/arm/
aout.h 274 #define ASM_OUTPUT_ASCII(STREAM, PTR, LEN) \
275 output_ascii_pseudo_op (STREAM, (const unsigned char *) (PTR), LEN)
  /external/libpcap/
tokdefs.h 85 LEN = 311,
189 #define LEN 311
grammar.c 120 LEN = 311,
224 #define LEN 311
789 "RSH", "LEN", "IPV6", "ICMPV6", "AH", "ESP", "VLAN", "MPLS", "PPPOED",
    [all...]
grammar.y 180 %token LEN
431 | LEN { $$ = gen_loadlen(); }
  /external/elfutils/libelf/
gelf_xlate.c 70 static void FName (void *dest, const void *ptr, size_t len, int encode) \
72 size_t n = len / sizeof (TName); \
79 *tdest++ = LEN##Bytes##_SWAP (tptr); \
90 *--tdest = LEN##Bytes##_SWAP (tptr); \
98 LEN##Bytes##_SWAP ((((word##Bytes##_t *) ptr))); \
107 ElfW2 (Bits, cvt_##Name) (void *dest, const void *src, size_t len, \
111 size_t n = len / sizeof (ElfW2(Bits, Name)); \
  /bionic/libc/arch-x86/string/
ssse3-memcpy5.S 81 # define LEN DEST+4
85 # define LEN SRC+4
158 movl LEN(%esp), %ecx
1372 movl LEN(%esp), %ecx
1418 movl LEN(%esp), %ecx
1464 movl LEN(%esp), %ecx
1512 movl LEN(%esp), %ecx
    [all...]
sse2-memset5-atom.S 87 # define LEN DEST+4
92 # define LEN CHR+4
144 movl LEN(%esp), %ecx

Completed in 230 milliseconds

1 2