HomeSort by relevance Sort by last modified time
    Searched refs:diff (Results 426 - 450 of 3197) sorted by null

<<11121314151617181920>>

  /hardware/qcom/display/msm8996/libqdutils/
profiler.cpp 151 nsecs_t diff = currtime_us - oldtime_us; local
156 diff > debug_fps_metadata.ignorethresh_us) {
161 debug_fps_metadata.framearrivals[debug_fps_metadata.curr_frame] = diff;
168 (unsigned int)(diff + debug_fps_metadata.margin_us) / 16666;
186 debug_fps_metadata.time_elapsed += (float)((float)diff/1000.0);
  /hardware/qcom/display/msm8998/libqdutils/
profiler.cpp 152 nsecs_t diff = currtime_us - oldtime_us; local
157 diff > debug_fps_metadata.ignorethresh_us) {
162 debug_fps_metadata.framearrivals[debug_fps_metadata.curr_frame] = diff;
169 (unsigned int)(diff + debug_fps_metadata.margin_us) / 16666;
187 debug_fps_metadata.time_elapsed += (float)((float)diff/1000.0);
  /system/core/toolbox/upstream-netbsd/usr.bin/grep/
file.c 147 ptrdiff_t diff; local
186 diff = p - bufpos;
187 len += diff;
190 memcpy(lnbuf + off, bufpos, diff);
191 bufrem -= diff;
  /external/libnl/lib/netfilter/
exp_obj.c 309 int diff = 0; local
323 diff |= EXP_DIFF_VAL(FAMILY, exp_family);
324 diff |= EXP_DIFF_VAL(TIMEOUT, exp_timeout);
325 diff |= EXP_DIFF_VAL(ID, exp_id);
326 diff |= EXP_DIFF_VAL(ZONE, exp_zone);
327 diff |= EXP_DIFF_VAL(CLASS, exp_class);
328 diff |= EXP_DIFF_VAL(FLAGS, exp_flags);
329 diff |= EXP_DIFF_VAL(NAT_DIR, exp_nat_dir);
331 diff |= EXP_DIFF_STRING(FN, exp_fn);
332 diff |= EXP_DIFF_STRING(HELPER_NAME, exp_helper_name)
    [all...]
ct_obj.c 305 int diff = 0; local
314 diff |= CT_DIFF_VAL(FAMILY, ct_family);
315 diff |= CT_DIFF_VAL(PROTO, ct_proto);
316 diff |= CT_DIFF_VAL(TCP_STATE, ct_protoinfo.tcp.state);
317 diff |= CT_DIFF_VAL(TIMEOUT, ct_timeout);
318 diff |= CT_DIFF_VAL(MARK, ct_mark);
319 diff |= CT_DIFF_VAL(USE, ct_use);
320 diff |= CT_DIFF_VAL(ID, ct_id);
321 diff |= CT_DIFF_ADDR(ORIG_SRC, ct_orig.src);
322 diff |= CT_DIFF_ADDR(ORIG_DST, ct_orig.dst)
    [all...]
  /system/netd/server/
TcpSocketMonitor.cpp 281 TcpStats diff = { variable
290 // Update socket stats with the newest entry, computing the diff w.r.t the previous entry.
295 .sent = diff.sent,
296 .lost = diff.lost,
302 diff.sent -= previous.sent;
303 diff.lost -= previous.lost;
307 // Aggregate the diff per network id.
309 stats.sent += diff.sent;
310 stats.lost += diff.lost;
311 stats.rttUs += diff.rttUs
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
CollectionUtilities.java 586 int diff; local
593 diff = CollectionUtilities.compare(iterator1.next(), iterator2.next());
594 if (diff != 0) {
595 return diff;
607 int diff = o1.size() - o2.size(); local
608 if (diff != 0) {
609 return diff;
623 int diff = o1.size() - o2.size(); local
624 if (diff != 0) {
625 return diff;
659 int diff = compare(a.getKey(), b.getKey()); local
667 int diff = o1.size() - o2.size(); local
    [all...]
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
CollectionUtilities.java 583 int diff; local
590 diff = CollectionUtilities.compare(iterator1.next(), iterator2.next());
591 if (diff != 0) {
592 return diff;
604 int diff = o1.size() - o2.size(); local
605 if (diff != 0) {
606 return diff;
620 int diff = o1.size() - o2.size(); local
621 if (diff != 0) {
622 return diff;
656 int diff = compare(a.getKey(), b.getKey()); local
664 int diff = o1.size() - o2.size(); local
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Arm/
CompareMem.asm 39 #define diff r6 define
66 eor diff, data1, data2 ; Non-zero if differences found.
67 cbnz diff, L0
71 ; Not reached the limit, must have found a diff.
85 orr diff, diff, mask
88 rev diff, diff
92 ; The MS-non-zero bit of DIFF marks either the first bit
96 clz pos, diff
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
denoising.c 32 * pixel adjustments vs. pixel diff value ahead of time.
34 * = (filter_coefficient * diff + 128) >> 8
42 * The adjustment vs. diff curve becomes flat very quick when diff increases.
47 * diff adjustment w/o motion correction adjustment w/ motion correction
51 * [-3, 3] diff diff
86 int diff = 0; local
90 diff = mc_running_avg_y[c] - sig[c];
91 absdiff = abs(diff);
170 int diff = mc_running_avg_y[c] - sig[c]; local
258 int diff = 0; local
321 int diff = mc_running_avg_uv[c] - sig[c]; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
numbertest_decimalquantity.cpp 31 double diff = a - b; local
32 diff = diff < 0 ? -diff : diff;
34 if (diff > bound) {
35 errln(message + u": " + DoubleToUnicodeString(a) + u" vs " + DoubleToUnicodeString(b) + u" differ by " + DoubleToUnicodeString(diff));
  /external/iputils/
ping_common.h 234 __u16 diff = (__u16)ntransmitted - acked; local
235 return (diff<=0x7FFF) ? diff : ntransmitted-nreceived-nerrors;
240 __u16 diff = (__u16)ntransmitted - seq; local
241 if (diff <= 0x7FFF) {
242 if ((int)diff+1 > pipesize)
243 pipesize = (int)diff+1;
  /external/libnl/lib/genl/
family.c 155 int diff = 0; local
159 diff |= FAM_DIFF(ID, a->gf_id != b->gf_id);
160 diff |= FAM_DIFF(VERSION, a->gf_version != b->gf_version);
161 diff |= FAM_DIFF(HDRSIZE, a->gf_hdrsize != b->gf_hdrsize);
162 diff |= FAM_DIFF(MAXATTR, a->gf_maxattr != b->gf_maxattr);
163 diff |= FAM_DIFF(NAME, strcmp(a->gf_name, b->gf_name));
167 return diff;
  /external/libxaac/decoder/
ixheaacd_acelp_mdct.c 66 WORD64 diff; local
73 diff = (temp_result1 - temp_result2) >> 32;
75 if (diff >= 2147483647)
76 diff = 2147483647;
77 else if (diff <= -2147483647 - 1)
78 diff = -2147483647 - 1;
80 return ((WORD32)diff);
  /frameworks/base/services/core/java/com/android/server/display/
DisplayDeviceInfo.java 129 * Diff result: The {@link #state} fields differ.
134 * Diff result: Other fields differ.
139 * Diff result: The color mode fields differ.
299 return other != null && diff(other) == 0;
306 public int diff(DisplayDeviceInfo other) { method in class:DisplayDeviceInfo
307 int diff = 0; local
309 diff |= DIFF_STATE;
312 diff |= DIFF_COLOR_MODE;
336 diff |= DIFF_OTHER;
338 return diff;
    [all...]
  /external/ltp/testcases/kernel/sched/tool/
time-schedule.c 218 signed long diff; local
234 diff = 1000000 * (after.tv_sec - before.tv_sec);
235 diff += after.tv_usec - before.tv_usec;
236 diffs[count] = diff;
237 total_diffs += diff;
238 if (diff < min_diff)
239 min_diff = diff;
240 if (diff > max_diff)
241 max_diff = diff;
  /external/libxml2/
Makefile.am 252 diff $(srcdir)/result/HTML/$$name result.$$name ; \
253 diff -b $(srcdir)/result/HTML/$$name.err error.$$name ; \
255 diff result.$$name result2.$$name` ; \
271 diff $(srcdir)/result/HTML/$$name result.$$name ; \
274 diff -b errorcut.$$name errorcut2.$$name ; \
276 diff result.$$name result2.$$name` ; \
290 diff $(srcdir)/result/HTML/$$name.sax result.$$name.sax` ; \
304 diff $(srcdir)/result/HTML/$$name.sax result.$$name.sax` ; \
322 diff $(srcdir)/result/$$name result.$$name ; \
325 diff result.$$name result2.$$name` ;
    [all...]
  /bionic/libc/tzcode/
strftime.c 557 long diff; local
563 diff = t->TM_GMTOFF;
586 diff = -timezone;
592 diff = -altzone;
597 if (diff < 0) {
599 diff = -diff;
602 diff /= SECSPERMIN;
603 diff = (diff / MINSPERHOUR) * 100
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
EncodedField.java 136 int diff = fieldIdx - lastIndex; local
142 out.annotate(Leb128Utils.unsignedLeb128Size(diff),
149 out.writeUnsignedLeb128(diff);
  /dalvik/dx/src/com/android/dx/dex/file/
EncodedField.java 139 int diff = fieldIdx - lastIndex; local
145 out.annotate(Leb128.unsignedLeb128Size(diff),
152 out.writeUleb128(diff);
  /external/autotest/client/site_tests/security_RootfsStatefulSymlinks/
security_RootfsStatefulSymlinks.py 100 diff = expected_set.difference(links_seen)
101 if diff:
103 for d in diff:
  /external/autotest/client/site_tests/ui_SystemTray/
ui_SystemTray.py 81 diff = comparer.compare(filepath, temp_file_path)
82 logging.debug("Pixel diff count: %d", diff.diff_pixel_count)
83 return diff.diff_pixel_count == 0
  /external/libopus/silk/
stereo_MS_to_LR.c 45 opus_int32 sum, diff, pred0_Q13, pred1_Q13; local
81 diff = x1[ n + 1 ] - (opus_int32)x2[ n + 1 ];
83 x2[ n + 1 ] = (opus_int16)silk_SAT16( diff );
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_highbd_block_error_intrin_sse2.c 59 const int64_t diff = coeff[i + j] - dqcoeff[i + j]; local
60 error += diff * diff;
  /external/libvpx/libvpx/vpx_dsp/
psnr.c 39 const int diff = a[j] - b[j]; local
40 *sum += diff;
41 *sse += diff * diff;
62 const int diff = a[j] - b[j]; local
63 *sum += diff;
64 *sse += diff * diff;
133 int64_t diff; local
134 diff = (a[x] >> input_shift) - (b[x] >> input_shift)
    [all...]

Completed in 1590 milliseconds

<<11121314151617181920>>