HomeSort by relevance Sort by last modified time
    Searched refs:idx (Results 1 - 25 of 3229) 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...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/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)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/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...]
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_TCPOPTSTRIP.h 22 #define tcpoptstrip_set_bit(bmap, idx) (bmap[(idx) >> 5] |= 1U << (idx & 31))
24 #define tcpoptstrip_test_bit(bmap, idx) (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
  /development/ndk/platforms/android-L/include/linux/netfilter/
xt_TCPOPTSTRIP.h 22 #define tcpoptstrip_set_bit(bmap, idx) (bmap[(idx) >> 5] |= 1U << (idx & 31))
24 #define tcpoptstrip_test_bit(bmap, idx) (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
  /external/iptables/include/linux/netfilter/
xt_TCPOPTSTRIP.h 6 #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/
xt_TCPOPTSTRIP.h 6 #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/
stoull.pass.cpp 15 // 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...]
stol.pass.cpp 15 // 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...]
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...]
stoul.pass.cpp 15 // 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...]
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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/string.conversions/
stoull.pass.cpp 15 // 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...]
stol.pass.cpp 15 // 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...]
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...]
stoul.pass.cpp 15 // 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...]
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;
44 assert(std::stof("1.e60", &idx) == INFINITY)
    [all...]
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/netfilter/
xt_TCPOPTSTRIP.h 22 #define tcpoptstrip_set_bit(bmap, idx) (bmap[(idx) >> 5] |= 1U << (idx & 31))
24 #define tcpoptstrip_test_bit(bmap, idx) (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/netfilter/
xt_TCPOPTSTRIP.h 22 #define tcpoptstrip_set_bit(bmap, idx) (bmap[(idx) >> 5] |= 1U << (idx & 31))
24 #define tcpoptstrip_test_bit(bmap, idx) (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/netfilter/
xt_TCPOPTSTRIP.h 22 #define tcpoptstrip_set_bit(bmap, idx) (bmap[(idx) >> 5] |= 1U << (idx & 31))
24 #define tcpoptstrip_test_bit(bmap, idx) (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/netfilter/
xt_TCPOPTSTRIP.h 22 #define tcpoptstrip_set_bit(bmap, idx) (bmap[(idx) >> 5] |= 1U << (idx & 31))
24 #define tcpoptstrip_test_bit(bmap, idx) (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/netfilter/
xt_TCPOPTSTRIP.h 22 #define tcpoptstrip_set_bit(bmap, idx) (bmap[(idx) >> 5] |= 1U << (idx & 31))
24 #define tcpoptstrip_test_bit(bmap, idx) (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/netfilter/
xt_TCPOPTSTRIP.h 22 #define tcpoptstrip_set_bit(bmap, idx) (bmap[(idx) >> 5] |= 1U << (idx & 31))
24 #define tcpoptstrip_test_bit(bmap, idx) (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)

Completed in 396 milliseconds

1 2 3 4 5 6 7 8 91011>>