HomeSort by relevance Sort by last modified time
    Searched refs:idx (Results 176 - 200 of 1021) sorted by null

1 2 3 4 5 6 78 91011>>

  /cts/tools/dx-tests/src/dxc/junit/opcodes/fastore/jm/
T_fastore_6.java 21 public void run(Object a, float[] arr, int idx, float value) {
22 arr[idx] = value;
  /cts/tools/dx-tests/src/dxc/junit/opcodes/iastore/jm/
T_iastore_6.java 21 public void run(Object a, int[] arr, int idx, int value) {
22 arr[idx] = value;
  /cts/tools/dx-tests/src/dxc/junit/opcodes/lastore/jm/
T_lastore_6.java 21 public void run(Object a, long[] arr, int idx, long value) {
22 arr[idx] = value;
  /cts/tools/dx-tests/src/dxc/junit/opcodes/sastore/jm/
T_sastore_6.java 21 public void run(Object a, short[] arr, int idx, short value) {
22 arr[idx] = value;
  /cts/tools/vm-tests/src/dot/junit/opcodes/aput_object/d/
T_aput_object_1.java 21 public void run(String[] arr, int idx, String value) {
22 arr[idx] = value;
T_aput_object_2.java 21 public void run(Integer[] arr, int idx, Integer value) {
22 arr[idx] = value;
  /cts/tools/vm-tests/src/dot/junit/opcodes/aget/d/
T_aget_8.java 20 public int run(int[] arr, float idx) {
  /cts/tools/vm-tests/src/dot/junit/opcodes/aget_boolean/d/
T_aget_boolean_8.java 20 public boolean run(boolean[] arr, float idx) {
  /cts/tools/vm-tests/src/dot/junit/opcodes/aget_byte/d/
T_aget_byte_8.java 20 public byte run(byte[] arr, float idx) {
  /cts/tools/vm-tests/src/dot/junit/opcodes/aget_char/d/
T_aget_char_8.java 20 public char run(char[] arr, float idx) {
  /cts/tools/vm-tests/src/dot/junit/opcodes/aget_short/d/
T_aget_short_8.java 20 public short run(short[] arr, float idx) {
  /cts/tools/vm-tests/src/dot/junit/opcodes/aget_wide/d/
T_aget_wide_10.java 21 public long run(long[] arr, float idx) {
  /cts/tools/vm-tests/src/dot/junit/opcodes/aput/d/
T_aput_8.java 20 public void run(int[] arr, float idx, float value) {
  /cts/tools/vm-tests/src/dot/junit/opcodes/aput_boolean/d/
T_aput_boolean_8.java 20 public void run(boolean[] arr, float idx, boolean value) {
  /cts/tools/vm-tests/src/dot/junit/opcodes/aput_byte/d/
T_aput_byte_8.java 20 public void run(byte[] arr, float idx, byte value) {
  /cts/tools/vm-tests/src/dot/junit/opcodes/aput_char/d/
T_aput_char_8.java 20 public void run(char[] arr, float idx, char value) {
  /cts/tools/vm-tests/src/dot/junit/opcodes/aput_short/d/
T_aput_short_8.java 20 public void run(short[] arr, float idx, short value) {
  /cts/tools/vm-tests/src/dot/junit/opcodes/aput_wide/d/
T_aput_wide_6.java 21 public void run(double[] arr, int idx, long value) {
T_aput_wide_9.java 21 public void run(long[] arr, float idx, long value) {
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
Cache.java 214 int idx = -1*Arrays.binarySearch(hashes_idx, prefix_hash)-1; local
215 if (idx == cache_size) {
218 return (hashes_idx[idx] & PREFIX_HASH_MASK) == prefix_hash;
238 int idx = -1*Arrays.binarySearch(hashes_idx, hash)-1; local
239 if (idx == cache_size) {
242 while ((hashes_idx[idx] & HASH_MASK) == hash) {
243 int i = (int) (hashes_idx[idx] & INDEX_MASK) - 1;
247 idx++;
248 if (idx == cache_size) {
279 int idx = Arrays.binarySearch(hashes_idx, idx_hash) local
313 int idx = Arrays.binarySearch(hashes_idx, idx_hash); local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
MemberIdsSection.java 37 int idx = 0; local
40 ((MemberIdItem) i).setIndex(idx);
41 idx++;
  /external/elfutils/libdw/
dwarf_onearange.c 23 dwarf_onearange (Dwarf_Aranges *aranges, size_t idx)
28 if (idx >= aranges->naranges)
34 return &aranges->info[idx];
dwarf_onesrcline.c 23 dwarf_onesrcline (Dwarf_Lines *lines, size_t idx)
28 if (idx >= lines->nlines)
34 return &lines->info[idx];
  /dalvik/dx/src/com/android/dx/util/
Bits.java 55 * @param idx {@code >= 0, < getMax(set);} which bit
58 public static boolean get(int[] bits, int idx) {
59 int arrayIdx = idx >> 5;
60 int bit = 1 << (idx & 0x1f);
68 * @param idx {@code >= 0, < getMax(set);} which bit
71 public static void set(int[] bits, int idx, boolean value) {
72 int arrayIdx = idx >> 5;
73 int bit = 1 << (idx & 0x1f);
86 * @param idx {@code >= 0, < getMax(set);} which bit
88 public static void set(int[] bits, int idx) {
153 int idx = findFirst(bits, start); local
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/input/
CharSequenceReader.java 34 private int idx; field in class:CharSequenceReader
50 idx = 0;
60 mark = idx;
79 if (idx >= charSequence.length()) {
82 return charSequence.charAt(idx++);
96 if (idx >= charSequence.length()) {
123 idx = mark;
137 if (idx >= charSequence.length()) {
140 int dest = (int)Math.min(charSequence.length(), (idx + n));
141 int count = dest - idx;
    [all...]

Completed in 265 milliseconds

1 2 3 4 5 6 78 91011>>