| /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/ |
| fgetstr.c | 146 size_t diff;
local 165 diff = p - fp->_p;
166 len += diff;
170 diff);
171 fp->_r -= (int)diff;
|
| /external/catch2/include/internal/ |
| catch_totals.cpp | 13 Counts diff; local 14 diff.passed = passed - other.passed; 15 diff.failed = failed - other.failed; 16 diff.failedButOk = failedButOk - other.failedButOk; 17 return diff; 38 Totals diff; local 39 diff.assertions = assertions - other.assertions; 40 diff.testCases = testCases - other.testCases; 41 return diff; 51 Totals diff = *this - prevTotals local [all...] |
| /external/grpc-grpc/tools/profiling/qps/ |
| qps_diff.py | 16 """ Computes the diff between two qps runs and outputs significant results """ 40 argp = argparse.ArgumentParser(description='Perform diff on QPS Driver') 115 def diff(scenarios, loops, old, new): function 160 diff_output = diff(qps_scenarios._SCENARIOS, args.loops, 'old', 'new')
|
| /external/libaom/libaom/aom_dsp/ |
| sse.c | 26 const int32_t diff = abs(a[x] - b[x]); local 27 sse += diff * diff; 44 const int32_t diff = (int32_t)(a[x]) - (int32_t)(b[x]); local 45 sse += diff * diff;
|
| /external/libcxx/utils/libcxx/sym_check/ |
| diff.py | 11 diff - A set of functions for diff-ing two symbol lists. 51 def diff(old, new): function
|
| /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/arm/neon/ |
| vp9_error_neon.c | 26 const int16x8_t diff = vsubq_s16(c, d); local 27 const int16x4_t diff_lo = vget_low_s16(diff); 28 const int16x4_t diff_hi = vget_high_s16(diff); 29 // diff is 15-bits, the squares 30, so we can store 2 in 31-bits before
|
| /external/linux-kselftest/tools/testing/selftests/bpf/ |
| test_xdp_meta.c | 15 __u32 diff = 0; local 25 diff |= ((__u32 *)data_meta)[0] ^ ((__u32 *)data)[0]; 26 diff |= ((__u16 *)data_meta)[2] ^ ((__u16 *)data)[2]; 28 return diff ? TC_ACT_SHOT : TC_ACT_OK;
|
| /external/skia/src/core/ |
| SkUnPreMultiply.cpp | 74 int diff = SkAbs32(test - div); local 75 SkASSERT(diff <= 1 && test <= 255);
|
| /external/skqp/src/core/ |
| SkUnPreMultiply.cpp | 74 int diff = SkAbs32(test - div); local 75 SkASSERT(diff <= 1 && test <= 255);
|
| /external/slf4j/slf4j-api/src/test/java/org/slf4j/ |
| NoBindingTest.java | 36 int diff = new Random().nextInt(10000); field in class:NoBindingTest 40 logger.debug("hello" + diff); 45 MDC.put("k" + diff, "v"); 50 Marker m = MarkerFactory.getMarker("a" + diff);
|
| /external/slf4j/slf4j-log4j12/src/test/java/org/slf4j/impl/ |
| RecursiveAppender.java | 36 int diff = new Random().nextInt(); field in class:RecursiveAppender 40 Logger logger = LoggerFactory.getLogger("RecursiveAppender" + diff);
|
| /external/tensorflow/tensorflow/compiler/tf2tensorrt/utils/ |
| trt_allocator_test.cc | 63 const uint64_t diff = alignment - ptr_val % alignment; local 64 if (space > diff) { 66 RunTest(alignment, space - diff, ptr_val + diff, space - diff)); 69 space - diff > 1 ? space - diff - 1 71 space - diff, space - diff + 1, space - 1}) { 72 EXPECT_EQ(space - diff >= size [all...] |
| /external/tensorflow/tensorflow/tools/graph_transforms/ |
| compare_graphs.cc | 64 string diff; local 65 if (EqualGraphDef(a, b, &diff)) { 69 std::cout << diff << std::endl;
|
| /external/u-boot/arch/arm/cpu/sa1100/ |
| timer.c | 34 signed long diff; local 49 diff = endtime - now; 50 } while (diff >= 0);
|
| /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/ |
| lsp_to_lsf.c | 34 int16_t diff; /* diff between table value and desired value (Q15) */ local 62 /* Calculate diff, which is used in the linear approximation of acos(x) */ 63 diff = (*lspPtr)-(*cosTblPtr); 71 tmp = (int16_t)((WebRtcIlbcfix_kAcosDerivative[k] * diff) >> 11);
|
| /external/webrtc/webrtc/modules/desktop_capture/ |
| differ_block_sse2.cc | 55 int diff = _mm_cvtsi128_si32(sad); local 56 if (diff) 111 int diff = _mm_cvtsi128_si32(sad); local 112 if (diff)
|
| /art/dex2oat/linker/ |
| index_bss_mapping_encoder.h | 48 uint32_t diff = index - entry_.GetIndex(index_bits_); local 49 if (diff > 32u - index_bits_) { 53 if ((mask & ~(static_cast<uint32_t>(-1) << diff)) != 0u) { 58 mask = ((mask << index_bits_) >> diff) | (static_cast<uint32_t>(1u) << (32 - diff));
|
| /art/dex2oat/linker/mips/ |
| relative_patcher_mips.cc | 75 uint32_t diff = target_offset - anchor_offset; local 76 diff += (diff & 0x8000) << 1; // Account for sign extension in "instr reg(s), offset_low". 80 (*code)[literal_offset + 0] = static_cast<uint8_t>(diff >> 16); 81 (*code)[literal_offset + 1] = static_cast<uint8_t>(diff >> 24); 84 (*code)[literal_offset + 0] = static_cast<uint8_t>(diff >> 0); 85 (*code)[literal_offset + 1] = static_cast<uint8_t>(diff >> 8);
|
| /art/dex2oat/linker/mips64/ |
| relative_patcher_mips64.cc | 69 uint32_t diff = target_offset - anchor_offset; local 74 diff += (diff & 0x8000) << 1; // Account for sign extension in "instr reg(s), offset_low". 78 (*code)[literal_offset + 0] = static_cast<uint8_t>(diff >> 16); 79 (*code)[literal_offset + 1] = static_cast<uint8_t>(diff >> 24); 82 (*code)[literal_offset + 0] = static_cast<uint8_t>(diff >> 0); 83 (*code)[literal_offset + 1] = static_cast<uint8_t>(diff >> 8);
|
| /art/test/660-checker-sad-byte/src/ |
| Main.java | 41 int diff = x - y; local 42 if (diff < 0) diff = -diff; 43 return diff; 54 int diff = x - y; local 55 return diff >= 0 ? diff : -diff; 66 int diff = x - y local 91 long diff = x - y; local 104 long diff = x - y; local 116 long diff = x - y; local [all...] |
| /art/test/660-checker-sad-long/src/ |
| Main.java | 46 long diff = x - y; local 47 if (diff < 0) diff = -diff; 48 return diff; 59 long diff = x - y; local 60 return diff >= 0 ? diff : -diff; 71 long diff = x - y local [all...] |
| /bionic/libc/dns/nameser/ |
| ns_samedomain.c | 57 int diff, escaped; local 109 diff = (int)(la - lb); 116 if (diff < 2) 124 if (a[diff - 1] != '.') 132 for (i = diff - 1; i > 0; i--) 144 cp = a + diff;
|
| /build/blueprint/bpfmt/ |
| bpfmt.go | 97 data, err := diff(src, res) 99 return fmt.Errorf("computing diff: %s", err) 101 fmt.Printf("diff %s bpfmt/%s\n", filename, filename) 162 func diff(b1, b2 []byte) (data []byte, err error) { func 180 data, err = exec.Command("diff", "-u", f1.Name(), f2.Name()).CombinedOutput() 182 // diff exits with a non-zero status when the files don't match.
|
| /build/soong/bpfix/cmd/ |
| bpfix.go | 101 data, err := diff(src, res) 103 return fmt.Errorf("computing diff: %s", err) 105 fmt.Printf("diff %s bpfix/%s\n", filename, filename) 163 func diff(b1, b2 []byte) (data []byte, err error) { func 181 data, err = exec.Command("diff", "-u", f1.Name(), f2.Name()).CombinedOutput() 183 // diff exits with a non-zero status when the files don't match.
|