Searched refs:diff (Results 1 - 25 of 852) sorted by relevance

1234567891011>>

/external/webrtc/webrtc/common_audio/signal_processing/
H A Dresample_by_2_internal.c34 int32_t tmp0, tmp1, diff; local
43 diff = tmp0 - state[1];
45 diff = (diff + (1 << 13)) >> 14;
46 tmp1 = state[0] + diff * kResampleAllpass[1][0];
48 diff = tmp1 - state[2];
50 diff = diff >> 14;
51 if (diff < 0)
52 diff
129 int32_t tmp0, tmp1, diff; local
203 int32_t tmp0, tmp1, diff; local
273 int32_t tmp0, tmp1, diff; local
343 int32_t tmp0, tmp1, diff; local
422 int32_t tmp0, tmp1, diff; local
555 int32_t tmp0, tmp1, diff; local
[all...]
H A Dresample_by_2_mips.c151 int32_t tmp1, tmp2, diff; local
157 diff = in32 - state1;
158 tmp1 = MUL_ACCUM_1(kResampleAllpass2[0], diff, state0);
160 diff = tmp1 - state2;
161 tmp2 = MUL_ACCUM_2(kResampleAllpass2[1], diff, state1);
163 diff = tmp2 - state3;
164 state3 = MUL_ACCUM_2(kResampleAllpass2[2], diff, state2);
169 diff = in32 - state5;
170 tmp1 = MUL_ACCUM_1(kResampleAllpass1[0], diff, state4);
172 diff
[all...]
/external/libweave/third_party/libuweave/src/
H A Dcrypto_utils.c10 uint8_t diff = 0; local
12 diff |= arr1[i] ^ arr2[i];
15 return 0 == diff;
/external/webp/src/utils/
H A Drandom.h41 int diff; local
43 diff = rg->tab_[rg->index1_] - rg->tab_[rg->index2_];
44 if (diff < 0) diff += (1u << 31);
45 rg->tab_[rg->index1_] = diff;
49 diff = (int)((uint32_t)diff << 1) >> (32 - num_bits);
50 diff = (diff * amp) >> VP8_RANDOM_DITHER_FIX; // restrict range
51 diff
[all...]
/external/clang/test/CodeGenCXX/
H A Dfunction-template-specialization.cpp7 T* next(T* ptr, const U& diff);
10 T* next(T* ptr, const U& diff) { argument
11 return ptr + diff;
14 void test(int *iptr, float *fptr, int diff) { argument
16 iptr = next(iptr, diff);
19 fptr = next(fptr, diff);
23 T* next(T* ptr, const U& diff);
25 void test2(int *iptr, double *dptr, int diff) { argument
26 iptr = next(iptr, diff);
29 dptr = next(dptr, diff);
[all...]
/external/icu/icu4c/source/i18n/
H A Dbocsu.cpp31 u_writeDiff(int32_t diff, uint8_t *p) { argument
32 if(diff>=SLOPE_REACH_NEG_1) {
33 if(diff<=SLOPE_REACH_POS_1) {
34 *p++=(uint8_t)(SLOPE_MIDDLE+diff);
35 } else if(diff<=SLOPE_REACH_POS_2) {
36 *p++=(uint8_t)(SLOPE_START_POS_2+(diff/SLOPE_TAIL_COUNT));
37 *p++=(uint8_t)(SLOPE_MIN+diff%SLOPE_TAIL_COUNT);
38 } else if(diff<=SLOPE_REACH_POS_3) {
39 p[2]=(uint8_t)(SLOPE_MIN+diff%SLOPE_TAIL_COUNT);
40 diff/
[all...]
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/QA/
H A DdiffiSAC.txt4 diff ../dataqa350/i30_1DTMF_16kHz_long.pcm ../dataqa351/i30_1DTMF_16kHz_long.pcm
5 diff ../dataqa350/i60_1DTMF_16kHz_long.pcm ../dataqa351/i60_1DTMF_16kHz_long.pcm
6 diff ../dataqa350/i30_2DTMF_16kHz_long.pcm ../dataqa351/i30_2DTMF_16kHz_long.pcm
7 diff ../dataqa350/i60_2DTMF_16kHz_long.pcm ../dataqa351/i60_2DTMF_16kHz_long.pcm
8 diff ../dataqa350/i30_3DTMF_16kHz_long.pcm ../dataqa351/i30_3DTMF_16kHz_long.pcm
9 diff ../dataqa350/i60_3DTMF_16kHz_long.pcm ../dataqa351/i60_3DTMF_16kHz_long.pcm
10 diff ../dataqa350/i30_4DTMF_16kHz_long.pcm ../dataqa351/i30_4DTMF_16kHz_long.pcm
11 diff ../dataqa350/i60_4DTMF_16kHz_long.pcm ../dataqa351/i60_4DTMF_16kHz_long.pcm
12 diff ../dataqa350/i30_5DTMF_16kHz_long.pcm ../dataqa351/i30_5DTMF_16kHz_long.pcm
13 diff
[all...]
H A DdiffiSACPLC.txt10 diff $OUTDIR1/outplc1.pcm $OUTDIR2/outplc1.pcm
11 diff $OUTDIR1/outplc2.pcm $OUTDIR2/outplc2.pcm
12 diff $OUTDIR1/outplc3.pcm $OUTDIR2/outplc3.pcm
13 diff $OUTDIR1/outplc4.pcm $OUTDIR2/outplc4.pcm
14 diff $OUTDIR1/outplc5.pcm $OUTDIR2/outplc5.pcm
15 diff $OUTDIR1/outplc6.pcm $OUTDIR2/outplc6.pcm
/external/selinux/prebuilts/bin/
H A Dsediff.py30 parser.add_argument("POLICY1", help="Path to the first SELinux policy to diff.", nargs=1)
31 parser.add_argument("POLICY2", help="Path to the second SELinux policy to diff.", nargs=1)
108 diff = setools.PolicyDifference(p1, p2) variable
111 print("Policy Properties ({0} Modified)".format(len(diff.modified_properties)))
113 if diff.modified_properties and not args.stats:
114 for name, added, removed in sorted(diff.modified_properties, key=lambda x: x.property):
120 if diff.added_commons or diff.removed_commons or diff.modified_commons or args.common:
122 len(diff
[all...]
/external/libnfc-nxp/Linux_x86/
H A DphOsalNfc_Utils.c42 int8_t diff = 0; local
47 for(;((n>0)&&(diff==0));n--,b1++,b2++)
49 diff = *b1 - *b2;
52 return (int)diff;
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DBOCSU.java252 * @param diff
257 private static final int writeDiff(int diff, byte buffer[], int offset) argument
259 if (diff >= SLOPE_REACH_NEG_1_) {
260 if (diff <= SLOPE_REACH_POS_1_) {
261 buffer[offset ++] = (byte)(SLOPE_MIDDLE_ + diff);
263 else if (diff <= SLOPE_REACH_POS_2_) {
265 + (diff / SLOPE_TAIL_COUNT_));
267 (diff % SLOPE_TAIL_COUNT_));
269 else if (diff <= SLOPE_REACH_POS_3_) {
271 + (diff
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DBOCSU.java251 * @param diff
256 private static final int writeDiff(int diff, byte buffer[], int offset) argument
258 if (diff >= SLOPE_REACH_NEG_1_) {
259 if (diff <= SLOPE_REACH_POS_1_) {
260 buffer[offset ++] = (byte)(SLOPE_MIDDLE_ + diff);
262 else if (diff <= SLOPE_REACH_POS_2_) {
264 + (diff / SLOPE_TAIL_COUNT_));
266 (diff % SLOPE_TAIL_COUNT_));
268 else if (diff <= SLOPE_REACH_POS_3_) {
270 + (diff
[all...]
/external/icu/icu4c/source/common/
H A Ducnvbocu.cpp212 /* Faster versions of packDiff() for single-byte-encoded diff values. */
214 /** Is a diff value encodable in a single byte? */
215 #define DIFF_IS_SINGLE(diff) (BOCU1_REACH_NEG_1<=(diff) && (diff)<=BOCU1_REACH_POS_1)
217 /** Encode a diff value in a single byte. */
218 #define PACK_SINGLE_DIFF(diff) (BOCU1_MIDDLE+(diff))
220 /** Is a diff value encodable in two bytes? */
221 #define DIFF_IS_DOUBLE(diff) (BOCU1_REACH_NEG_
285 packDiff(int32_t diff) argument
398 int32_t prev, c, diff; local
649 int32_t prev, c, diff; local
865 int32_t diff, count; local
945 int32_t prev, count, diff, c; local
1167 int32_t prev, count, diff, c; local
[all...]
/external/google-breakpad/src/tools/solaris/dump_syms/
H A Drun_regtest.sh40 diff -u testdata/dump_syms_regtest.new testdata/dump_syms_regtest.sym > \
41 testdata/dump_syms_regtest.diff
45 rm testdata/dump_syms_regtest.diff testdata/dump_syms_regtest.new
48 echo "FAIL, see testdata/dump_syms_regtest.[new|diff]"
/external/google-breakpad/src/tools/windows/dump_syms/
H A Drun_regtest.sh42 diff -u testdata/dump_syms_regtest.new testdata/dump_syms_regtest.sym > \
43 testdata/dump_syms_regtest.diff
47 rm testdata/dump_syms_regtest.diff testdata/dump_syms_regtest.new
50 echo "FAIL, see testdata/dump_syms_regtest.[new|diff]"
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetBOCU1.java205 /* Faster versions of packDiff() for single-byte-encoded diff values. */
207 /** Is a diff value encodable in a single byte? */
208 private static boolean DIFF_IS_SINGLE(int diff){ argument
209 return (BOCU1_REACH_NEG_1<=(diff) && (diff)<=BOCU1_REACH_POS_1);
212 /** Encode a diff value in a single byte. */
213 private static int PACK_SINGLE_DIFF(int diff){ argument
214 return (BOCU1_MIDDLE+(diff));
217 /** Is a diff value encodable in two bytes? */
218 private static boolean DIFF_IS_DOUBLE(int diff){ argument
235 int prev, c , diff; field in class:CharsetBOCU1.CharsetEncoderBOCU
687 int prev, c , diff, count; field in class:CharsetBOCU1.CharsetDecoderBOCU
[all...]
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A Dlsf_to_lsp.c32 int16_t diff; /* difference, which is used for the local
47 diff = (freq&0x00ff);
56 tmpW32 = WebRtcIlbcfix_kCosDerivative[k] * diff;
H A Dnearest_neighbor.c28 const size_t diff = local
30 if (diff < min_diff) {
32 min_diff = diff;
/external/llvm/tools/llvm-diff/
H A DMakefile1 ##===- tools/llvm-diff/Makefile ----------------------------*- Makefile -*-===##
11 TOOLNAME := llvm-diff
/external/slf4j/slf4j-api/src/test/java/org/slf4j/
H A DNoBindingTest.java36 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/v8/src/compiler/
H A Dpipeline-statistics.cc28 CompilationStatistics::BasicStats* diff) {
30 diff->function_name_ = pipeline_stats->function_name_;
31 diff->delta_ = timer_.Elapsed();
34 diff->max_allocated_bytes_ = outer_zone_diff + scope_->GetMaxAllocatedBytes();
35 diff->absolute_max_allocated_bytes_ =
36 diff->max_allocated_bytes_ + allocated_bytes_at_start_;
37 diff->total_allocated_bytes_ =
65 CompilationStatistics::BasicStats diff; local
66 total_stats_.End(this, &diff);
67 compilation_stats_->RecordTotalStats(source_size_, diff);
26 End( PipelineStatistics* pipeline_stats, CompilationStatistics::BasicStats* diff) argument
81 CompilationStatistics::BasicStats diff; local
96 CompilationStatistics::BasicStats diff; local
[all...]
/external/valgrind/none/tests/s390x/
H A Dstck.c25 unsigned long start, end, diff; local
34 diff = clockticks_in_msec(end, start);
35 if (diff >= 1000 && diff < 1500)
H A Dstckf.c25 unsigned long start, end, diff; local
35 diff = clockticks_in_msec(end, start);
36 if (diff >= 1000 && diff < 1500)
/external/autotest/client/tools/
H A Ddiffprofile29 diff = {} variable
37 if diff.has_key(key):
38 diff[key] -= count
40 diff[key] = -count
47 if diff.has_key(key):
48 diff[key] += count
50 diff[key] = count
58 pct = (100 * diff[key]) / orig[key]
61 print "%10d %6.1f%% %s" % (diff[key], pct, key)
63 keys = sorted(diff
[all...]
/external/clang/utils/ABITest/layout/
H A DMakefile29 test.%.report: test.%.x.diff test.%.y.diff
42 .PRECIOUS: test.%.x.diff
43 test.%.x.diff: test.%.ref.out test.%.x.out
44 -diff $^ > $@
45 .PRECIOUS: test.%.y.diff
46 test.%.y.diff: test.%.ref.out test.%.y.out
47 -diff $^ > $@

Completed in 2175 milliseconds

1234567891011>>