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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_decompose_tmp.h 51 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[1]
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_decompose_tmp.h 51 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[1]
    [all...]
  /external/iptables/include/linux/netfilter/
xt_TCPOPTSTRIP.h 4 #define tcpoptstrip_set_bit(bmap, idx) \
5 (bmap[(idx) >> 5] |= 1U << (idx & 31))
6 #define tcpoptstrip_test_bit(bmap, idx) \
7 (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
  /hardware/samsung_slsi/exynos5/libhwjpeg/
ExynosJpegDecoder.cpp 1349 int idx[4][5]; local
    [all...]
  /external/dropbear/libtomcrypt/src/misc/crypt/
crypt_cipher_is_valid.c 20 @param idx The index of the cipher to search for
23 int cipher_is_valid(int idx)
26 if (idx < 0 || idx >= TAB_SIZE || cipher_descriptor[idx].name == NULL) {
crypt_hash_is_valid.c 20 @param idx The index of the hash to search for
23 int hash_is_valid(int idx)
26 if (idx < 0 || idx >= TAB_SIZE || hash_descriptor[idx].name == NULL) {
crypt_prng_is_valid.c 20 @param idx The index of the PRNG to search for
23 int prng_is_valid(int idx)
26 if (idx < 0 || idx >= TAB_SIZE || prng_descriptor[idx].name == NULL) {
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/string.conversions/
stof.pass.cpp 15 // 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) == INFINITY)
    [all...]
stod.pass.cpp 12 // 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 == 5)
    [all...]
stold.pass.cpp 12 // 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 == 5)
    [all...]
stoi.pass.cpp 12 // 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, 16)
    [all...]
stoll.pass.cpp 15 // 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...]
stoull.pass.cpp 12 // unsigned long long stoull(const string& str, size_t *idx = 0, int base = 10);
13 // unsigned long long stoull(const wstring& str, size_t *idx = 0, int base = 10);
26 size_t idx = 0; local
27 assert(std::stoull("10g", &idx, 16) == 16);
28 assert(idx == 2);
29 idx = 0;
30 assert(std::stoull(L"10g", &idx, 16) == 16);
31 assert(idx == 2);
32 idx = 0;
35 std::stoull("", &idx);
    [all...]
stol.pass.cpp 12 // long stol(const string& str, size_t *idx = 0, int base = 10);
13 // long stol(const wstring& str, size_t *idx = 0, int base = 10);
28 size_t idx = 0; local
29 assert(std::stol("10g", &idx, 16) == 16);
30 assert(idx == 2);
31 idx = 0;
32 assert(std::stol(L"10g", &idx, 16) == 16);
33 assert(idx == 2);
34 idx = 0;
37 std::stol("", &idx);
    [all...]
stoul.pass.cpp 12 // unsigned long stoul(const string& str, size_t *idx = 0, int base = 10);
13 // unsigned long stoul(const wstring& str, size_t *idx = 0, int base = 10);
26 size_t idx = 0; local
27 assert(std::stoul("10g", &idx, 16) == 16);
28 assert(idx == 2);
29 idx = 0;
30 assert(std::stoul(L"10g", &idx, 16) == 16);
31 assert(idx == 2);
32 idx = 0;
35 std::stoul("", &idx);
    [all...]
  /external/tcpdump/
print-sip.c 38 u_int idx; local
46 for (idx = 0; idx < len; idx++) {
47 if (EXTRACT_16BITS(pptr+idx) != 0x0d0a) { /* linefeed ? */
48 safeputchar(*(pptr+idx));
51 idx+=1;
  /external/iproute2/include/
ll_map.h 8 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,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
scanner.py 28 def _scan_once(string, idx):
30 nextchar = string[idx]
35 return parse_string(string, idx + 1, encoding, strict)
37 return parse_object((string, idx + 1), encoding, strict,
40 return parse_array((string, idx + 1), _scan_once)
41 elif nextchar == 'n' and string[idx:idx + 4] == 'null':
42 return None, idx + 4
43 elif nextchar == 't' and string[idx:idx + 4] == 'true'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
scanner.py 28 def _scan_once(string, idx):
30 nextchar = string[idx]
35 return parse_string(string, idx + 1, encoding, strict)
37 return parse_object((string, idx + 1), encoding, strict,
40 return parse_array((string, idx + 1), _scan_once)
41 elif nextchar == 'n' and string[idx:idx + 4] == 'null':
42 return None, idx + 4
43 elif nextchar == 't' and string[idx:idx + 4] == 'true'
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget/d/
T_aget_1.java 20 public int run(int[] arr, int idx) {
21 return arr[idx];
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_boolean/d/
T_aget_boolean_1.java 20 public boolean run(boolean[] arr, int idx) {
21 return arr[idx];
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_byte/d/
T_aget_byte_1.java 20 public byte run(byte[] arr, int idx) {
21 return arr[idx];
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_char/d/
T_aget_char_1.java 20 public char run(char[] arr, int idx) {
21 return arr[idx];
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_object/d/
T_aget_object_1.java 21 public String run(String [] arr, int idx) {
22 return arr[idx];
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_short/d/
T_aget_short_1.java 20 public short run(short[] arr, int idx) {
21 return arr[idx];

Completed in 718 milliseconds

1 2 3 4 5 6 7 8 91011>>