Searched refs:len (Results 1 - 25 of 8729) sorted by relevance

1234567891011>>

/external/v8/test/mjsunit/compiler/
H A Doptimized-float32array-length.js8 function len(a) { return a.length; } function
9 assertEquals(1, len(a));
10 assertEquals(1, len(a));
11 %OptimizeFunctionOnNextCall(len);
12 assertEquals(1, len(a));
13 assertOptimized(len);
H A Doptimized-float64array-length.js8 function len(a) { return a.length; } function
9 assertEquals(1, len(a));
10 assertEquals(1, len(a));
11 %OptimizeFunctionOnNextCall(len);
12 assertEquals(1, len(a));
13 assertOptimized(len);
H A Doptimized-int32array-length.js8 function len(a) { return a.length; } function
9 assertEquals(1, len(a));
10 assertEquals(1, len(a));
11 %OptimizeFunctionOnNextCall(len);
12 assertEquals(1, len(a));
13 assertOptimized(len);
H A Doptimized-uint32array-length.js8 function len(a) { return a.length; } function
9 assertEquals(1, len(a));
10 assertEquals(1, len(a));
11 %OptimizeFunctionOnNextCall(len);
12 assertEquals(1, len(a));
13 assertOptimized(len);
/external/clang/test/Lexer/
H A Ddigraph.c10 void copy(char d<::>, const char s<::>, int len)
12 while (len-- >= 0)
14 d<:len:> = s<:len:>; variable
/external/fec/
H A Ddotprod.h4 int len; /* Number of coefficients */ member in struct:dotprod
/external/strace/
H A Dseccomp_fprog.h2 unsigned short len; member in struct:seccomp_fprog
/external/clang/test/CodeGen/
H A D2004-05-07-VarArrays.c3 int foo(int len, char arr[][len], int X) { argument
H A Doffsetof.c9 int test(int len) { argument
10 return __builtin_offsetof(struct sockaddr_un, sun_path[len+1]);
/external/tlsdate/src/common/
H A Dstrnlen.c12 size_t len; local
14 for (len = 0; len < limit; len++)
18 return len;
/external/elfutils/libelf/
H A Dchdr_xlate.h6 Elf32_cvt_chdr (void *dest, const void *src, size_t len, int encode) argument
8 if (len == 0)
14 memmove (dest, src, len);
16 if (len >= sizeof (Elf32_Chdr))
21 Elf64_cvt_chdr (void *dest, const void *src, size_t len, int encode) argument
23 if (len == 0)
29 memmove (dest, src, len);
31 if (len >= sizeof (Elf64_Chdr))
/external/fio/t/
H A Dlog.c9 size_t len; local
12 len = vsnprintf(buffer, sizeof(buffer), format, args);
14 len = min(len, sizeof(buffer) - 1);
16 return fwrite(buffer, len, 1, stderr);
23 size_t len; local
26 len = vsnprintf(buffer, sizeof(buffer), format, args);
28 len = min(len, sizeof(buffer) - 1);
30 return fwrite(buffer, len,
[all...]
/external/fio/
H A Dlog.c12 size_t len; local
14 len = vsnprintf(buffer, sizeof(buffer), str, args);
15 len = min(len, sizeof(buffer) - 1);
18 len = fio_server_text_output(FIO_LOG_INFO, buffer, len);
22 len = fwrite(buffer, len, 1, f_out);
24 return len;
27 int log_local_buf(const char *buf, size_t len) argument
41 size_t len; local
69 size_t len; local
[all...]
/external/vboot_reference/firmware/lib/
H A Dstateful_util.c13 void StatefulInit(MemcpyState *state, void *buf, uint64_t len) argument
16 state->remaining_len = len;
20 void *StatefulSkip(MemcpyState *state, uint64_t len) argument
24 if (len > state->remaining_len) {
28 state->remaining_buf += len;
29 state->remaining_len -= len;
33 void *StatefulMemcpy(MemcpyState *state, void *dst, uint64_t len) argument
37 if (len > state->remaining_len) {
41 Memcpy(dst, state->remaining_buf, len);
42 state->remaining_buf += len;
47 StatefulMemcpy_r(MemcpyState *state, const void *src, uint64_t len) argument
61 StatefulMemset_r(MemcpyState *state, const uint8_t val, uint64_t len) argument
[all...]
/external/apache-http/src/org/apache/http/util/
H A DByteArrayBuffer.java51 private int len; field in class:ByteArrayBuffer
63 System.arraycopy(this.buffer, 0, newbuffer, 0, this.len);
67 public void append(final byte[] b, int off, int len) { argument
71 if ((off < 0) || (off > b.length) || (len < 0) ||
72 ((off + len) < 0) || ((off + len) > b.length)) {
75 if (len == 0) {
78 int newlen = this.len + len;
82 System.arraycopy(b, off, this.buffer, this.len, le
95 append(final char[] b, int off, int len) argument
117 append(final CharArrayBuffer b, int off, int len) argument
152 setLength(int len) argument
[all...]
H A DCharArrayBuffer.java53 private int len; field in class:CharArrayBuffer
65 System.arraycopy(this.buffer, 0, newbuffer, 0, this.len);
69 public void append(final char[] b, int off, int len) { argument
73 if ((off < 0) || (off > b.length) || (len < 0) ||
74 ((off + len) < 0) || ((off + len) > b.length)) {
77 if (len == 0) {
80 int newlen = this.len + len;
84 System.arraycopy(b, off, this.buffer, this.len, le
101 append(final CharArrayBuffer b, int off, int len) argument
124 append(final byte[] b, int off, int len) argument
150 append(final ByteArrayBuffer b, int off, int len) argument
196 setLength(int len) argument
[all...]
/external/v8/test/mjsunit/
H A Dstring-indexof-2.js55 for(var len = 1; i + len < lipsum.length; len += 7) {
56 var substring = lipsum.substring(i, i + len);
61 "Lipsum substring " + i + ".." + (i + len-1) + " not found");
62 assertEquals(lipsum.substring(index, index + len), substring,
63 "Wrong lipsum substring found: " + i + ".." + (i + len - 1) + "/" +
64 index + ".." + (index + len - 1));
66 assertEquals(i, index, "Lipsum match at " + i + ".." + (i + len - 1));
/external/curl/src/
H A Dtool_strdup.c27 size_t len; local
33 len = strlen(str);
35 if(len >= ((size_t)-1) / sizeof(char))
38 newstr = malloc((len+1)*sizeof(char));
42 memcpy(newstr, str, (len+1)*sizeof(char));
/external/toybox/toys/other/
H A Dcount.c21 int len; local
25 len = xread(0, toybuf, sizeof(toybuf));
26 if (!len) break;
27 size += len;
28 xwrite(1, toybuf, len);
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Dchap.c19 size_t len[3]; local
22 len[0] = 1;
24 len[1] = secret_len;
26 len[2] = challenge_len;
27 return md5_vector(3, addr, len, response);
/external/wpa_supplicant_8/src/eap_common/
H A Dchap.c19 size_t len[3]; local
22 len[0] = 1;
24 len[1] = secret_len;
26 len[2] = challenge_len;
27 return md5_vector(3, addr, len, response);
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Dchap.c19 size_t len[3]; local
22 len[0] = 1;
24 len[1] = secret_len;
26 len[2] = challenge_len;
27 return md5_vector(3, addr, len, response);
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_attr_parse.c21 u8 id, u8 len, const u8 *pos)
23 wpa_printf(MSG_EXCESSIVE, "WPS: WFA subelement id=%u len=%u",
24 id, len);
27 if (len != 1) {
29 "%u", len);
36 attr->authorized_macs_len = len;
39 if (len != 1) {
41 "Shareable length %u", len);
47 if (len != 1) {
49 "length %u", len);
20 wps_set_vendor_ext_wfa_subelem(struct wps_parse_attr *attr, u8 id, u8 len, const u8 *pos) argument
80 wps_parse_vendor_ext_wfa(struct wps_parse_attr *attr, const u8 *pos, u16 len) argument
100 wps_parse_vendor_ext(struct wps_parse_attr *attr, const u8 *pos, u16 len) argument
141 wps_set_attr(struct wps_parse_attr *attr, u16 type, const u8 *pos, u16 len) argument
588 u16 type, len; local
[all...]
/external/wpa_supplicant_8/src/wps/
H A Dwps_attr_parse.c21 u8 id, u8 len, const u8 *pos)
23 wpa_printf(MSG_EXCESSIVE, "WPS: WFA subelement id=%u len=%u",
24 id, len);
27 if (len != 1) {
29 "%u", len);
36 attr->authorized_macs_len = len;
39 if (len != 1) {
41 "Shareable length %u", len);
47 if (len != 1) {
49 "length %u", len);
20 wps_set_vendor_ext_wfa_subelem(struct wps_parse_attr *attr, u8 id, u8 len, const u8 *pos) argument
80 wps_parse_vendor_ext_wfa(struct wps_parse_attr *attr, const u8 *pos, u16 len) argument
100 wps_parse_vendor_ext(struct wps_parse_attr *attr, const u8 *pos, u16 len) argument
141 wps_set_attr(struct wps_parse_attr *attr, u16 type, const u8 *pos, u16 len) argument
588 u16 type, len; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_attr_parse.c21 u8 id, u8 len, const u8 *pos)
23 wpa_printf(MSG_EXCESSIVE, "WPS: WFA subelement id=%u len=%u",
24 id, len);
27 if (len != 1) {
29 "%u", len);
36 attr->authorized_macs_len = len;
39 if (len != 1) {
41 "Shareable length %u", len);
47 if (len != 1) {
49 "length %u", len);
20 wps_set_vendor_ext_wfa_subelem(struct wps_parse_attr *attr, u8 id, u8 len, const u8 *pos) argument
80 wps_parse_vendor_ext_wfa(struct wps_parse_attr *attr, const u8 *pos, u16 len) argument
100 wps_parse_vendor_ext(struct wps_parse_attr *attr, const u8 *pos, u16 len) argument
141 wps_set_attr(struct wps_parse_attr *attr, u16 type, const u8 *pos, u16 len) argument
588 u16 type, len; local
[all...]

Completed in 2536 milliseconds

1234567891011>>