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

1 2 3 4 5 6 7 8 91011>>

  /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) {
  /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,
  /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];
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_wide/d/
T_aget_wide_1.java 21 public long run(long[] arr, int idx) {
22 return arr[idx];
T_aget_wide_2.java 21 public double run(double[] arr, int idx) {
22 return arr[idx];
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aput/d/
T_aput_1.java 20 public void run(int[] arr, int idx, int value) {
21 arr[idx] = value;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aput_boolean/d/
T_aput_boolean_1.java 20 public void run(boolean[] arr, int idx, boolean value) {
21 arr[idx] = value;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aput_byte/d/
T_aput_byte_1.java 20 public void run(byte[] arr, int idx, byte value) {
21 arr[idx] = value;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aput_char/d/
T_aput_char_1.java 20 public void run(char[] arr, int idx, char value) {
21 arr[idx] = value;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aput_short/d/
T_aput_short_1.java 20 public void run(short[] arr, int idx, short value) {
21 arr[idx] = value;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aput_wide/d/
T_aput_wide_1.java 21 public void run(long[] arr, int idx, long value) {
22 arr[idx] = value;
T_aput_wide_2.java 21 public void run(double[] arr, int idx, double value) {
22 arr[idx] = value;
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
HydraulicErodeFilter.java 93 int idx = y * workSize + x; local
94 float wtemp = this.Kr; // * wa[idx];
95 float stemp = this.Ks; // * sa[idx];
97 wt[idx] += wtemp;
99 ga[idx] -= stemp * wt[idx];
100 st[idx] += stemp * wt[idx];
105 float a = ga[idx] + wt[idx];
    [all...]
  /external/elfutils/libdw/
dwarf_filesrc.c 59 dwarf_filesrc (Dwarf_Files *file, size_t idx, Dwarf_Word *mtime,
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;
  /frameworks/native/include/utils/
StringArray.h 44 void erase(int idx);
65 const char* getEntry(int idx) const {
66 return (unsigned(idx) >= unsigned(mCurrent)) ? NULL : mArray[idx];
73 void setEntry(int idx, const char* str);

Completed in 357 milliseconds

1 2 3 4 5 6 7 8 91011>>