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

12 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
vlc_encode_inline.h 25 Int idx, run, level, j; local
28 idx = 0;
53 RLB->level[idx] = -level;
54 RLB->s[idx] = 1;
55 RLB->run[idx] = run;
57 idx++;
61 RLB->level[idx] = level;
62 RLB->s[idx] = 0;
63 RLB->run[idx] = run;
65 idx++
116 Int idx, run, level, j; local
230 Int idx, run, level = 0, j; local
    [all...]
  /frameworks/native/libs/utils/
StringArray.cpp 74 void StringArray::erase(int idx) {
75 if (idx < 0 || idx >= mCurrent)
77 delete[] mArray[idx];
78 if (idx < mCurrent-1) {
79 memmove(&mArray[idx], &mArray[idx+1],
80 (mCurrent-1 - idx) * sizeof(char*));
103 void StringArray::setEntry(int idx, const char* str) {
104 if (idx < 0 || idx >= mCurrent
    [all...]
  /external/valgrind/tsan/
ts_simple_cache.h 48 size_t idx = ptr % kSize; local
49 arr_[idx] = ptr;
51 bits_[idx / 32] |= 1U << (idx % 32);
53 bits_[idx / 32] &= ~(1U << (idx % 32));
57 size_t idx = ptr % kSize; local
58 if (arr_[idx] == ptr) {
59 *val = (bits_[idx / 32] >> (idx % 32)) & 1
102 uint32_t idx(uint32_t a, uint32_t b) { function in class:IntPairToBoolCache
    [all...]
  /external/srtp/test/
replay_driver.c 89 rdb_check_add(rdb_t *rdb, uint32_t idx) {
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) {
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) {
120 /* printf("index: %u\n", idx); */
132 uint32_t idx, ircvd; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
ms_stereo.c 65 Word32 idx, shift; local
67 idx = sfb + sfboffs;
69 thrL = sfbThresholdLeft[idx];
70 thrR = sfbThresholdRight[idx];
71 nrgL = sfbEnergyLeft[idx];
72 nrgR = sfbEnergyRight[idx];
85 nrgL = sfbEnergyMid[idx];
86 nrgR = sfbEnergySide[idx];
103 msMask[idx] = 1;
106 for (j=sfbOffset[idx]; j<sfbOffset[idx+1]; j++)
    [all...]
  /cts/tools/vm-tests-tf/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;
  /external/elfutils/libdw/
dwarf_getarange_addr.c 70 size_t idx = (l + u) / 2; local
71 if (addr < aranges->info[idx].addr)
72 u = idx;
73 else if (addr > aranges->info[idx].addr
74 && addr - aranges->info[idx].addr >= aranges->info[idx].length)
75 l = idx + 1;
77 return &aranges->info[idx];
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget/d/
T_aget_8.java 20 public int run(int[] arr, float idx) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_boolean/d/
T_aget_boolean_8.java 20 public boolean run(boolean[] arr, float idx) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_byte/d/
T_aget_byte_8.java 20 public byte run(byte[] arr, float idx) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_char/d/
T_aget_char_8.java 20 public char run(char[] arr, float idx) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_short/d/
T_aget_short_8.java 20 public short run(short[] arr, float idx) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_wide/d/
T_aget_wide_10.java 21 public long run(long[] arr, float idx) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aput/d/
T_aput_8.java 20 public void run(int[] arr, float idx, float value) {
  /cts/tools/vm-tests-tf/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-tf/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-tf/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-tf/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-tf/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) {
  /development/tools/emulator/opengl/system/egl/
ClientAPIExts.h 24 void initClientFuncs(const EGLClient_glesInterface *iface, int idx);
  /external/elfutils/libdwfl/
dwfl_onesrcline.c 53 dwfl_onesrcline (Dwarf_Die *cudie, size_t idx)
70 if (idx >= cu->die.cu->lines->nlines)
76 return &cu->lines->idx[idx];
  /sdk/emulator/opengl/host/libs/Translator/EGL/
ClientAPIExts.h 24 void initClientFuncs(GLESiface *iface, int idx);
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
Cache.java 194 int idx = -1*Arrays.binarySearch(hashes_idx, prefix_hash)-1; local
195 if (idx == cache_size) {
198 return (hashes_idx[idx] & PREFIX_HASH_MASK) == prefix_hash;
218 int idx = -1*Arrays.binarySearch(hashes_idx, hash)-1; local
219 if (idx == cache_size) {
222 while ((hashes_idx[idx] & HASH_MASK) == hash) {
223 int i = (int) (hashes_idx[idx] & INDEX_MASK) - 1;
227 idx++;
228 if (idx == cache_size) {
259 int idx = Arrays.binarySearch(hashes_idx, idx_hash) local
293 int idx = Arrays.binarySearch(hashes_idx, idx_hash); local
    [all...]

Completed in 5481 milliseconds

12 3 4 5 6 7 8 91011>>