HomeSort by relevance Sort by last modified time
    Searched refs:mid (Results 226 - 250 of 626) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/r11/sources/android/support/src/musl-math/
libm.h 37 uint32_t mid; member in struct:ldshape::__anon104160
  /prebuilts/ndk/r13/sources/android/support/src/musl-math/
libm.h 37 uint32_t mid; member in struct:ldshape::__anon104548
  /system/libufdt/
ufdt_convert.c 222 int mid = s + ((e - s) >> 1); local
223 uint32_t mid_phandle = tree->phandle_table.data[mid].phandle;
225 e = mid;
227 s = mid;
  /toolchain/binutils/binutils-2.25/bfd/
hash.c 350 const unsigned long *mid = low + (high - low) / 2; local
351 if (n >= *mid)
352 low = mid + 1;
354 high = mid;
  /art/runtime/
art_method.cc 174 const DexFile::MethodId& mid = dex_file->GetMethodId(GetDexMethodIndex()); local
177 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_;
181 if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) {
184 return dex_file->GetMethodSignature(mid) == dex_file2->GetMethodSignature(mid2);
230 const DexFile::MethodId& mid = dexfile->GetMethodId(dex_method_idx); local
232 DCHECK_STREQ(dexfile->GetMethodName(mid), other_dexfile.GetMethodName(name_and_sig_mid));
233 DCHECK_EQ(dexfile->GetMethodSignature(mid), other_dexfile.GetMethodSignature(name_and_sig_mid));
237 const char* mid_declaring_class_descriptor = dexfile->StringByTypeIdx(mid.class_idx_);
    [all...]
  /libcore/ojluni/src/main/java/java/util/
IdentityHashMap.java 1424 int hi = getFence(), lo = index, mid = ((lo + hi) >>> 1) & ~1; local
1481 int hi = getFence(), lo = index, mid = ((lo + hi) >>> 1) & ~1; local
1540 int hi = getFence(), lo = index, mid = ((lo + hi) >>> 1) & ~1; local
    [all...]
WeakHashMap.java 1106 int hi = getFence(), lo = index, mid = (lo + hi) >>> 1; local
1186 int hi = getFence(), lo = index, mid = (lo + hi) >>> 1; local
1263 int hi = getFence(), lo = index, mid = (lo + hi) >>> 1; local
    [all...]
Collections.java 266 int mid = (low + high) >>> 1; local
267 Comparable<? super T> midVal = list.get(mid);
271 low = mid + 1;
273 high = mid - 1;
275 return mid; // key found
288 int mid = (low + high) >>> 1; local
289 Comparable<? super T> midVal = get(i, mid);
293 low = mid + 1;
295 high = mid - 1;
297 return mid; // key foun
372 int mid = (low + high) >>> 1; local
392 int mid = (low + high) >>> 1; local
849 int mid = -distance % size; local
    [all...]
  /libcore/ojluni/src/main/native/
net_util_md.c 203 int mid = a + (b-a)/2; local
204 if (setsockopt(fd, SOL_SOCKET, opt, &mid, sizeof(int)) == 0) {
205 limit = mid;
206 a = mid + 1;
209 b = mid - 1;
728 jmethodID mid; local
734 mid = (*env)->GetStaticMethodID(env, iCls, "getProperty",
736 CHECK_NULL(mid);
737 flagSet = (*env)->CallStaticObjectMethod(env, iCls, mid, s);
    [all...]
  /external/libopus/celt/
bands.c 401 static void stereo_merge(celt_norm * OPUS_RESTRICT X, celt_norm * OPUS_RESTRICT Y, opus_val16 mid, int N, int arch)
414 /* Compensating for the mid normalization */
415 xp = MULT16_32_Q15(mid, xp);
416 /* mid and side are in Q15, not Q14 like X and Y */
417 mid2 = SHR16(mid, 1);
445 /* Apply mid scaling (side is already scaled) */
446 l = MULT16_16_P15(mid, X[j]);
708 side and mid. With just that parameter, we can re-scale both
709 mid and side because we know that 1) they have unit norm and
833 /* This is the mid vs side allocation that minimizes squared erro
900 opus_val16 mid=0, side=0; local
1209 opus_val16 mid=0, side=0; local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUResourceBundleReader.java 1027 int mid, start, limit; local
1294 int mid = (start + limit) \/ 2; local
    [all...]
ICUBinary.java 131 int mid = (start + limit) >>> 1; local
132 int nameOffset = getNameOffset(bytes, mid);
137 limit = mid;
139 start = mid + 1;
142 return mid;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUResourceBundleReader.java 1025 int mid, start, limit; local
1292 int mid = (start + limit) \/ 2; local
    [all...]
ICUBinary.java 127 int mid = (start + limit) >>> 1; local
128 int nameOffset = getNameOffset(bytes, mid);
133 limit = mid;
135 start = mid + 1;
138 return mid;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/DebuggerOnDemand/
LaunchedDebugger.java 245 long mid = reply.getNextValueAsMethodID(); local
249 if (mid == methodID) {
  /external/icu/icu4c/source/common/
locmap.c 1115 uint32_t mid; local
    [all...]
  /art/runtime/interpreter/
interpreter_common.h 456 int mid = (lo + hi) / 2; local
457 int32_t foundVal = keys[mid];
459 hi = mid - 1;
461 lo = mid + 1;
463 return entries[mid];
  /art/test/115-native-bridge/
nativebridge.cc 71 jmethodID mid = nullptr; local
73 mid = env->GetStaticMethodID(klass, methods[i].name, nb_method->signature);
75 mid = env->GetMethodID(klass, methods[i].name, nb_method->signature);
77 if (mid != nullptr) {
78 const char* shorty = gNativeBridgeArtCallbacks->getMethodShorty(env, mid);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
CoreMathVerifier.java 243 Math.acos(in.mid()),
262 acosh((float) in.mid()),
286 Math.asin(in.mid()),
304 asinh((float) in.mid()),
328 Math.atan(in.mid()),
346 atanh((float) in.mid()),
371 Math.atan2(numerator.mid(), denominator.mid()),
400 Math.cbrt(in.mid()),
424 Math.cos(in.mid()),
    [all...]
  /external/icu/icu4c/source/i18n/
timezone.cpp 183 int32_t mid; local
191 mid = (int32_t)((start + limit) / 2);
192 if (lastMid == mid) { /* Have we moved? */
195 lastMid = mid;
196 u = ures_getStringByIndex(array, mid, &len, &status);
200 U_DEBUG_TZ_MSG(("tz: compare to %s, %d .. [%d] .. %d\n", U_DEBUG_TZ_STR(u), start, mid, limit));
204 U_DEBUG_TZ_MSG(("fisa: found at %d\n", mid));
205 return mid;
207 limit = mid;
209 start = mid;
    [all...]
  /external/ImageMagick/MagickCore/
quantize.c 768 mid,
843 mid=midpoint;
852 mid.red+=(id & 1) != 0 ? bisect : -bisect;
853 mid.green+=(id & 2) != 0 ? bisect : -bisect;
854 mid.blue+=(id & 4) != 0 ? bisect : -bisect;
855 mid.alpha+=(id & 8) != 0 ? bisect : -bisect;
876 error.red=QuantumScale*(pixel.red-mid.red);
877 error.green=QuantumScale*(pixel.green-mid.green);
878 error.blue=QuantumScale*(pixel.blue-mid.blue);
880 error.alpha=QuantumScale*(pixel.alpha-mid.alpha)
761 mid, local
    [all...]
draw.c 1260 mid; local
3961 mid; local
4690 mid, local
5969 mid, local
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_shader_state.c 310 nv50_vec4_map(uint8_t *map, int mid, uint32_t lin[4],
319 lin[mid / 32] |= 1 << (mid % 32);
321 map[mid] = oid;
324 map[mid] |= 1;
325 ++mid;
333 return mid;
  /external/skia/src/views/unix/
keysym2ucs.c 822 int mid; local
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
RecursiveActionTest.java 1217 int mid = (lo + hi) >>> 1; local
    [all...]

Completed in 802 milliseconds

1 2 3 4 5 6 7 8 91011>>