HomeSort by relevance Sort by last modified time
    Searched defs:diff (Results 701 - 725 of 2033) sorted by null

<<21222324252627282930>>

  /external/webp/src/enc/
vp8l_enc.c 49 // palette entry diff.
54 const uint32_t diff = VP8LSubPixels(col1, col2); local
57 score = PaletteComponentDistance((diff >> 0) & 0xff);
58 score += PaletteComponentDistance((diff >> 8) & 0xff);
59 score += PaletteComponentDistance((diff >> 16) & 0xff);
61 score += PaletteComponentDistance((diff >> 24) & 0xff);
103 const uint32_t diff = VP8LSubPixels(palette[i], predict); local
104 const uint8_t rd = (diff >> 16) & 0xff;
105 const uint8_t gd = (diff >> 8) & 0xff;
106 const uint8_t bd = (diff >> 0) & 0xff
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
entropy_coding.c 162 int32_t diff[FRAMESAMPLES/8]; local
168 diff[k] = (PSpecQ12[k] - PSpecQ12[FRAMESAMPLES / 4 - 1 - k] + 16) >> 5;
179 sum += (WebRtcIsacfix_kCos[k][n] * diff[n] + 256) >> 9;
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
entropy_coding.c 60 int32_t diff[FRAMESAMPLES / 8]; local
67 diff[k] = (PSpecQ12[k] - PSpecQ12[FRAMESAMPLES_QUARTER - 1 - k] + 16) >> 5;
80 sum += (CS_ptrQ9[n] * diff[n] + 256) >> 9;
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_handlers.c 4202 struct os_reltime now, diff = { 0, 0 }; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
events.c 1175 struct os_reltime diff; local
1178 &bss->last_update, &diff);
1182 (unsigned int) diff.sec,
1183 (unsigned int) diff.usec);
1493 int min_diff, diff; local
3703 struct os_reltime diff; local
3738 struct os_reltime now, diff; local
    [all...]
  /frameworks/av/media/libaudioclient/
AudioTrack.cpp 2816 int64_t diff = ets.mPosition[ExtendedTimestamp::LOCATION_CLIENT] local
2841 int32_t diff = (Modulo<uint32_t>(mFramesWritten) - mPosition).signedValue(); local
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerRenderer.cpp 1496 int64_t diff = firstVideoTimeUs - firstAudioTimeUs; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
vlc_encode.cpp 2057 Int diff, QPtmp; local
    [all...]
  /frameworks/base/core/java/android/content/res/
Configuration.java 382 public static String configurationDiffToString(int diff) {
384 if ((diff & ActivityInfo.CONFIG_MCC) != 0) {
387 if ((diff & ActivityInfo.CONFIG_MNC) != 0) {
390 if ((diff & ActivityInfo.CONFIG_LOCALE) != 0) {
393 if ((diff & ActivityInfo.CONFIG_TOUCHSCREEN) != 0) {
396 if ((diff & ActivityInfo.CONFIG_KEYBOARD) != 0) {
399 if ((diff & ActivityInfo.CONFIG_KEYBOARD_HIDDEN) != 0) {
402 if ((diff & ActivityInfo.CONFIG_NAVIGATION) != 0) {
405 if ((diff & ActivityInfo.CONFIG_ORIENTATION) != 0) {
408 if ((diff & ActivityInfo.CONFIG_SCREEN_LAYOUT) != 0)
1322 public int diff(Configuration delta) { method in class:Configuration
1331 public int diff(Configuration delta, boolean compareUndefined) { method in class:Configuration
1477 int diff = other.seq - seq; local
    [all...]
  /frameworks/base/core/java/android/text/
SpannableStringBuilder.java 551 final long diff = selectionStart - start; local
552 final int offset = Math.toIntExact(diff * newLen / origLen);
560 final long diff = selectionEnd - start; local
561 final int offset = Math.toIntExact(diff * newLen / origLen);
    [all...]
  /frameworks/base/core/java/android/view/
WindowManager.java 2234 final int diff = flags ^ o.flags; local
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
LinearLayoutManager.java 1760 final int diff = end > start ? 1 : -1; local
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
AccessPoint.java 699 long diff = (now - config.getNetworkSelectionStatus().getDisableTime()) / 1000; local
700 long sec = diff%60; //seconds
701 long min = (diff/60)%60; //minutes
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NavigationBarFragment.java 322 final int diff = newVal ^ oldVal; local
324 if (diff != 0) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
VolumeDialogImpl.java 545 final long diff = System.currentTimeMillis() - mCollapseTime; local
546 final boolean collapsing = mCollapseTime != 0 && diff < getConservativeCollapseDuration();
    [all...]
  /frameworks/compile/mclinker/lib/Target/
GNULDBackend.cpp 2211 uint64_t diff = vma - got.addr() - got.size(); local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
TelephonyMetrics.java 533 long diff = currentTimestamp - previousTimestamp; local
534 if (diff < 0) {
536 } else if (diff <= 10) {
538 } else if (diff <= 20) {
540 } else if (diff <= 50) {
542 } else if (diff <= 100) {
544 } else if (diff <= 200) {
546 } else if (diff <= 500) {
548 } else if (diff <= 1000) {
550 } else if (diff <= 2000)
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
GridLayoutManager.java 421 final int diff = end > start ? 1 : -1; local
423 for (int i = start; i != end; i += diff) {
768 int span, start, end, diff; local
773 diff = 1;
777 diff = -1;
    [all...]
LinearLayoutManager.java 1771 final int diff = end > start ? 1 : -1; local
    [all...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
BaseRecyclerViewInstrumentationTest.java 638 int diff = end > start ? 1 : -1; local
640 for (int i = start; i != end; i+=diff) {
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
h264parse_dpb.c 426 uint8_t add_top, add_bottom, diff; local
850 diff = 0;
853 if (p_dpb->listX_0[idx] != p_dpb->listX_1[idx]) diff = 1;
857 if (!(diff))
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
SSLSessionTest.java 121 long diff = currentTime - sessionTime; local
122 assertTrue("diff between " + currentTime + " and " + sessionTime + " should be < 10000",
123 diff < 10000);
149 long diff = currentTime - sessionTime; local
150 assertTrue("diff between " + currentTime + " and " + sessionTime + " should be < 10000",
151 diff < 10000);
152 assertTrue ("diff should be < 10000 but is " + diff, diff < 10000);
  /libcore/ojluni/src/main/java/sun/misc/
FloatingDecimal.java 1642 FDBigInteger diff; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
msasn1.h 130 ASN1int16_t diff; member in struct:tagASN1generalizedtime_t
141 ASN1int16_t diff; member in struct:tagASN1utctime_t
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssistTest.java 953 String diff = getDiff(beforeWithCaret, actual); local
    [all...]

Completed in 1568 milliseconds

<<21222324252627282930>>