Searched refs:idx (Results 1 - 25 of 2166) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_decompose_tmp.h51 unsigned idx[6], i; local
66 idx[0] = GET_ELT(i);
67 POINT(idx[0]);
74 idx[0] = GET_ELT(i);
75 idx[1] = GET_ELT(i + 1);
76 LINE(flags, idx[0], idx[1]);
84 idx[1] = GET_ELT(0);
85 idx[2] = idx[
[all...]
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_decompose_tmp.h51 unsigned idx[6], i; local
66 idx[0] = GET_ELT(i);
67 POINT(idx[0]);
74 idx[0] = GET_ELT(i);
75 idx[1] = GET_ELT(i + 1);
76 LINE(flags, idx[0], idx[1]);
84 idx[1] = GET_ELT(0);
85 idx[2] = idx[
[all...]
/external/iptables/include/linux/netfilter/
H A Dxt_TCPOPTSTRIP.h6 #define tcpoptstrip_set_bit(bmap, idx) \
7 (bmap[(idx) >> 5] |= 1U << (idx & 31))
8 #define tcpoptstrip_test_bit(bmap, idx) \
9 (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_TCPOPTSTRIP.h6 #define tcpoptstrip_set_bit(bmap, idx) \
7 (bmap[(idx) >> 5] |= 1U << (idx & 31))
8 #define tcpoptstrip_test_bit(bmap, idx) \
9 (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
/external/libcxx/test/strings/string.conversions/
H A Dstoull.pass.cpp15 // unsigned long long stoull(const string& str, size_t *idx = 0, int base = 10);
16 // unsigned long long stoull(const wstring& str, size_t *idx = 0, int base = 10);
29 size_t idx = 0; local
30 assert(std::stoull("10g", &idx, 16) == 16);
31 assert(idx == 2);
32 idx = 0;
33 assert(std::stoull(L"10g", &idx, 16) == 16);
34 assert(idx == 2);
35 idx = 0;
38 std::stoull("", &idx);
[all...]
H A Dstol.pass.cpp15 // long stol(const string& str, size_t *idx = 0, int base = 10);
16 // long stol(const wstring& str, size_t *idx = 0, int base = 10);
31 size_t idx = 0; local
32 assert(std::stol("10g", &idx, 16) == 16);
33 assert(idx == 2);
34 idx = 0;
35 assert(std::stol(L"10g", &idx, 16) == 16);
36 assert(idx == 2);
37 idx = 0;
40 std::stol("", &idx);
[all...]
H A Dstoll.pass.cpp15 // long long stoll(const string& str, size_t *idx = 0, int base = 10);
16 // long long stoll(const wstring& str, size_t *idx = 0, int base = 10);
31 size_t idx = 0; local
32 assert(std::stoll("10g", &idx, 16) == 16);
33 assert(idx == 2);
34 idx = 0;
35 assert(std::stoll(L"10g", &idx, 16) == 16);
36 assert(idx == 2);
37 idx = 0;
40 std::stoll("", &idx);
[all...]
H A Dstoul.pass.cpp15 // unsigned long stoul(const string& str, size_t *idx = 0, int base = 10);
16 // unsigned long stoul(const wstring& str, size_t *idx = 0, int base = 10);
29 size_t idx = 0; local
30 assert(std::stoul("10g", &idx, 16) == 16);
31 assert(idx == 2);
32 idx = 0;
33 assert(std::stoul(L"10g", &idx, 16) == 16);
34 assert(idx == 2);
35 idx = 0;
38 std::stoul("", &idx);
[all...]
H A Dstof.pass.cpp15 // float stof(const string& str, size_t *idx = 0);
16 // float stof(const wstring& str, size_t *idx = 0);
32 size_t idx = 0; local
33 assert(std::stof("10g", &idx) == 10);
34 assert(idx == 2);
35 idx = 0;
36 assert(std::stof(L"10g", &idx) == 10);
37 assert(idx == 2);
38 idx = 0;
41 assert(std::stof("1.e60", &idx)
[all...]
H A Dstod.pass.cpp12 // double stod(const string& str, size_t *idx = 0);
13 // double stod(const wstring& str, size_t *idx = 0);
29 size_t idx = 0; local
30 assert(std::stod("10g", &idx) == 10);
31 assert(idx == 2);
32 idx = 0;
33 assert(std::stod(L"10g", &idx) == 10);
34 assert(idx == 2);
37 assert(std::stod("1.e60", &idx) == 1.e60);
38 assert(idx
[all...]
H A Dstold.pass.cpp12 // long double stold(const string& str, size_t *idx = 0);
13 // long double stold(const wstring& str, size_t *idx = 0);
31 size_t idx = 0; local
32 assert(std::stold("10g", &idx) == 10);
33 assert(idx == 2);
34 idx = 0;
35 assert(std::stold(L"10g", &idx) == 10);
36 assert(idx == 2);
39 assert(std::stold("1.e60", &idx) == 1.e60L);
40 assert(idx
[all...]
H A Dstoi.pass.cpp12 // int stoi(const string& str, size_t *idx = 0, int base = 10);
13 // int stoi(const wstring& str, size_t *idx = 0, int base = 10);
28 size_t idx = 0; local
29 assert(std::stoi("10g", &idx, 16) == 16);
30 assert(idx == 2);
31 idx = 0;
32 assert(std::stoi(L"10g", &idx, 16) == 16);
33 assert(idx == 2);
38 std::stoi("0x100000000", &idx, 16);
46 std::stoi(L"0x100000000", &idx, 1
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-732.js28 // idx is a valid array index but is too big to be cached in hash field.
29 var idx = 10000000; variable
36 obj[idx] = "obj" + idx;
39 var str = "" + idx;
46 assertEquals(obj[str], obj[idx])
H A Dsplice-missing-wb.js34 for (var i = 0; i < a.length; i++) a[i] = {idx:i};
42 a[0] = {idx:0};
52 // Try accessing a[0].idx. It will segfault if write-barrier was accidentally
54 assertEquals(0, a[0].idx);
55 assertEquals(1, a[1].idx);
56 assertEquals(202, a[2].idx);
/external/iproute2/include/
H A Dll_map.h8 extern const char *ll_index_to_name(unsigned idx);
9 extern const char *ll_idx_n2a(unsigned idx, char *buf);
10 extern int ll_index_to_type(unsigned idx);
11 extern unsigned ll_index_to_flags(unsigned idx);
12 extern unsigned ll_index_to_addr(unsigned idx, unsigned char *addr,
/external/chromium_org/third_party/simplejson/
H A Dscanner.py32 def _scan_once(string, idx):
34 nextchar = string[idx]
39 return parse_string(string, idx + 1, encoding, strict)
41 return parse_object((string, idx + 1), encoding, strict,
44 return parse_array((string, idx + 1), _scan_once)
45 elif nextchar == 'n' and string[idx:idx + 4] == 'null':
46 return None, idx + 4
47 elif nextchar == 't' and string[idx:idx
[all...]
/external/tcpdump/
H A Dprint-sip.c38 u_int idx; local
46 for (idx = 0; idx < len; idx++) {
47 TCHECK2(*(pptr+idx), 2);
48 if (EXTRACT_16BITS(pptr+idx) != 0x0d0a) { /* linefeed ? */
49 safeputchar(*(pptr+idx));
52 idx+=1;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/scripts/
H A DFingerprints.js4 var idx=document.URL.indexOf("php?");
5 if (idx==-1) {
8 window.open(document.URL.substring(0,idx)+"php?fp_type="+type, "_self");
13 var idx=document.URL.indexOf("?");
15 if (idx != -1) {
16 var typeStr=document.URL.substring(idx+1, document.URL.length);
17 idx=typeStr.indexOf("=");
18 if (idx != -1) {
19 var ch=typeStr.substring(idx+1, idx
[all...]
/external/compiler-rt/test/tsan/
H A Dbench_ten_mutexes.cc11 int idx = (i % kMutex); local
13 idx = kMutex - idx - 1;
14 pthread_mutex_lock(&mtx[idx]);
15 pthread_mutex_unlock(&mtx[idx]);
/external/elfutils/0.153/libdw/
H A Ddwarf_filesrc.c59 dwarf_filesrc (Dwarf_Files *file, size_t idx, Dwarf_Word *mtime, argument
62 if (file == NULL || idx >= file->nfiles)
66 *mtime = file->info[idx].mtime;
69 *length = file->info[idx].length;
71 return file->info[idx].name;
/external/chromium_org/third_party/libsrtp/srtp/test/
H A Dreplay_driver.c89 rdb_check_add(rdb_t *rdb, uint32_t idx) { argument
91 if (rdb_check(rdb, idx) != err_status_ok) {
92 printf("rdb_check failed at index %u\n", idx);
95 if (rdb_add_index(rdb, idx) != err_status_ok) {
96 printf("rdb_add_index failed at index %u\n", idx);
104 rdb_check_expect_failure(rdb_t *rdb, uint32_t idx) { argument
107 err = rdb_check(rdb, idx);
109 printf("rdb_check failed at index %u (false positive)\n", idx);
117 rdb_check_add_unordered(rdb_t *rdb, uint32_t idx) { argument
120 /* printf("index: %u\n", idx); */
140 uint32_t idx, ircvd; local
[all...]
/external/chromium_org/rlz/lib/
H A Dstring_utils.cc42 int idx = 0; local
44 while (text[idx] == '\t' || text[idx] == ' ')
45 idx++;
47 if ((text[idx] == '0') &&
48 (text[idx + 1] == 'X' || text[idx + 1] == 'x'))
49 idx +=2; // String is of the form 0x...
53 for (; text[idx] != '\0'; idx
[all...]
/external/lldb/include/lldb/Core/
H A DFileSpecList.h111 /// \a file starting \a idx entries into the file spec list.
113 /// @param[in] idx
127 FindFileIndex (size_t idx, const FileSpec &file, bool full) const;
132 /// Gets a file from the file list. If \a idx is not a valid index,
137 /// @param[in] idx
141 /// A copy of the FileSpec object at index \a idx. If \a idx
146 GetFileSpecAtIndex (size_t idx) const;
154 /// @param[in] idx
158 /// A pointer to a contained FileSpec object at index \a idx
195 Insert(size_t idx, const FileSpec &file) argument
211 Replace(size_t idx, const FileSpec &file) argument
222 Remove(size_t idx) argument
[all...]
/external/srtp/test/
H A Dreplay_driver.c89 rdb_check_add(rdb_t *rdb, uint32_t idx) { argument
91 if (rdb_check(rdb, idx) != err_status_ok) {
92 printf("rdb_check failed at index %u\n", idx);
95 if (rdb_add_index(rdb, idx) != err_status_ok) {
96 printf("rdb_add_index failed at index %u\n", idx);
104 rdb_check_expect_failure(rdb_t *rdb, uint32_t idx) { argument
107 err = rdb_check(rdb, idx);
109 printf("rdb_check failed at index %u (false positive)\n", idx);
117 rdb_check_unordered(rdb_t *rdb, uint32_t idx) { argument
120 /* printf("index: %u\n", idx); */
132 uint32_t idx, ircvd; local
[all...]
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachThreadList.cpp105 for (size_t idx = 0; idx < num_threads; ++idx)
107 if (m_threads[idx]->ThreadID() == tid)
109 thread_sp = m_threads[idx];
122 for (size_t idx = 0; idx < num_threads; ++idx)
124 if (m_threads[idx]->MachPortNumber() == mach_port_number)
126 thread_sp = m_threads[idx];
287 size_t idx; local
[all...]

Completed in 1530 milliseconds

1234567891011>>