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

1 2

  /bionic/libc/arch-x86/silvermont/string/
sse2-strcpy-slm.S 102 #define LEN STR2+4
139 movl LEN(%esp), %ebx
    [all...]
sse2-memcpy-slm.S 78 #define LEN SRC+4
99 movl LEN(%esp), %ecx
sse4-memcmp-slm.S 96 #define LEN BLK2 + 4
137 movl LEN(%esp), %ecx
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/
rbug_internal.h 51 #define LEN(size) \
59 LEN(4); \
83 if (pos > len) \
91 if (pos > len) \
95 if (pos > len) \
  /external/chromium_org/v8/test/mjsunit/regress/
regress-2185-2.js 30 var LEN = 2e4;
59 if (++count >= LEN) return a;
69 if (++count >= LEN) return a;
73 if (++count >= LEN) return a;
83 if (++count >= LEN) return a;
89 for (var i = 0; i < LEN; i++) {
96 for (var i = 0; i < LEN; i++) {
97 a.push(LEN - i);
103 for (var i = 0; i < LEN; i++) {
104 a.push(Math.floor(Math.random() * LEN));
    [all...]
  /external/mesa3d/src/gallium/auxiliary/rbug/
rbug_internal.h 51 #define LEN(size) \
59 LEN(4); \
83 if (pos > len) \
91 if (pos > len) \
95 if (pos > len) \
  /art/runtime/arch/x86/
memcmp16_x86.S 41 #define LEN BLK2+4
46 movl LEN(%esp), %ecx
  /bionic/libc/arch-x86/atom/string/
sse2-memchr-atom.S 87 #define LEN STR2+4
94 mov LEN(%esp), %edx
sse2-memrchr-atom.S 84 #define LEN STR2+4
90 mov LEN(%esp), %edx
ssse3-memcmp-atom.S 96 #define LEN BLK2+4
107 movl LEN(%esp), %ecx
    [all...]
ssse3-strlcat-atom.S 82 #define LEN SRC+4
88 mov LEN(%esp), %ebx
112 movl LEN(%esp), %ebx
841 movl LEN(%esp), %ebx
  /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/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/chromium_org/net/third_party/nss/ssl/
ssltrace.c 36 void ssl_PrintBuf(sslSocket *ss, const char *msg, const void *vp, int len)
44 SSL_TRACE(("%d: SSL[%d]: %s [Len: %d]", SSL_GETPID(), ss->fd,
45 msg, len));
47 SSL_TRACE(("%d: SSL: %s [Len: %d]", SSL_GETPID(), msg, len));
52 while (--len >= 0) {
72 #define LEN(cp) (((cp)[0] << 8) | ((cp)[1]))
98 static void PrintBuf(sslSocket *ss, char *msg, unsigned char *cp, int len)
104 SSL_TRACE(("%d: SSL[%d]: %s [Len: %d]",
105 SSL_GETPID(), ss->fd, msg, len));
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cdateintervalformattest.c 20 #define LEN(a) (sizeof(a)/sizeof(a[0]))
cdattst.c 41 #define LEN(a) (sizeof(a)/sizeof(a[0]))
1157 int32_t len = udat_format(fmt, date, buf, buflen, 0, ec); local
1409 int32_t len = udatpg_getBestPattern(udtpg, textContextItemPtr->skeleton, -1, ubuf, kUbufMax, &status); local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cdateintervalformattest.c 20 #define LEN(a) (sizeof(a)/sizeof(a[0]))
  /external/libedit/src/
search.c 233 #define LEN 2
237 #define LEN 0
246 for (cp = &el->el_search.patbuf[LEN];
259 if (el->el_search.patlen >= EL_BUFSIZ - LEN)
282 if (el->el_search.patlen > LEN)
297 for (cp = &el->el_search.patbuf[LEN];; cp++)
301 el->el_search.patlen - LEN - 1;
308 EL_BUFSIZ - LEN) {
350 cp >= &el->el_search.patbuf[LEN];
356 if (el->el_search.patlen > LEN && ch != '[')
    [all...]
  /external/freetype/src/gzip/
infcodes.c 17 START, /* x: set up for LEN */
18 LEN, /* i: get length/literal/eob next */
36 uInt len; member in struct:inflate_codes_state
41 } code; /* if LEN or DIST, where in tree */
103 case START: /* x: set up for LEN */
119 c->mode = LEN;
120 case LEN: /* i: get length/literal/eob next */
138 c->len = t->base;
161 c->len += (uInt)b & inflate_mask[j];
165 Tracevv((stderr, "inflate: length %u\n", c->len));
    [all...]
  /external/chromium_org/third_party/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
  /external/eigen/blas/testing/
cblat1.f 88 INTEGER I, J, LEN, NP1
203 LEN = 2*MAX(N,1)
205 DO 20 I = 1, LEN
219 CALL CTEST(LEN,CX,CTRUE5(1,NP1,INCX),CTRUE5(1,NP1,INCX),
224 CALL CTEST(LEN,CX,CTRUE6(1,NP1,INCX),CTRUE6(1,NP1,INCX),
521 SUBROUTINE STEST(LEN,SCOMP,STRUE,SSIZE,SFAC)
524 * THIS SUBR COMPARES ARRAYS SCOMP() AND STRUE() OF LENGTH LEN TO
535 INTEGER LEN
537 REAL SCOMP(LEN), SSIZE(LEN), STRUE(LEN
    [all...]
zblat1.f 88 INTEGER I, J, LEN, NP1
203 LEN = 2*MAX(N,1)
205 DO 20 I = 1, LEN
219 CALL CTEST(LEN,CX,CTRUE5(1,NP1,INCX),CTRUE5(1,NP1,INCX),
224 CALL CTEST(LEN,CX,CTRUE6(1,NP1,INCX),CTRUE6(1,NP1,INCX),
521 SUBROUTINE STEST(LEN,SCOMP,STRUE,SSIZE,SFAC)
524 * THIS SUBR COMPARES ARRAYS SCOMP() AND STRUE() OF LENGTH LEN TO
535 INTEGER LEN
537 DOUBLE PRECISION SCOMP(LEN), SSIZE(LEN), STRUE(LEN
    [all...]
dblat1.f 252 INTEGER I, LEN, NP1
304 LEN = 2*MAX(N,1)
306 DO 20 I = 1, LEN
321 DO 40 I = 1, LEN
324 CALL STEST(LEN,SX,STRUE,STRUE,SFAC)
    [all...]
sblat1.f 252 INTEGER I, LEN, NP1
304 LEN = 2*MAX(N,1)
306 DO 20 I = 1, LEN
321 DO 40 I = 1, LEN
324 CALL STEST(LEN,SX,STRUE,STRUE,SFAC)
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
rbt_pars.cpp     [all...]

Completed in 359 milliseconds

1 2