Searched refs:orig (Results 1 - 25 of 225) sorted by relevance

123456789

/external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/QA/
H A DruniSACRate.txt8 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_1.pcm > $LOGG
9 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 30 -MAXRATE 32000 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_2.pcm >> $LOGG
10 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_3.pcm >> $LOGG
11 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 30 -MAXRATE 32000 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_4.pcm >> $LOGG
12 ../Release/kenny.exe 13000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_5.pcm >> $LOGG
13 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 60 -MAXRATE 32000 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_napi_6.pcm >> $LOGG
14 ../Release/kenny.exe 13000 -INIT_RATE 32000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/sawsweep_380_6
[all...]
/external/valgrind/main/VEX/unused/
H A Ddispatch.c14 char* find_translation ( char* orig )
18 if (transtab[i].orig == orig)
28 char* orig; member in struct:__anon27974
44 void add_translation ( char* orig, int orig_size, char* trans, int trans_size ) argument
48 transtab[n_transtab_used].orig = orig;
/external/openssh/regress/
H A Dconnect-privsep.sh6 cp $OBJ/sshd_proxy $OBJ/sshd_proxy.orig
16 cp $OBJ/sshd_proxy.orig $OBJ/sshd_proxy
/external/qemu-pc-bios/vgabios/
H A Ddataseghack21 cp $1 $1.orig
23 /bin/rm -f temp.awk.1 temp.awk.2 temp.awk.3 $1.orig
/external/valgrind/main/none/tests/x86/
H A Dbt_literal.c12 UInt mash_reg_L ( UInt orig )
47 : "r" (orig)
97 UInt mash_reg_W ( UInt orig )
132 : "r" (orig)
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dlog_grouper.js20 this.orig = origEntry;
26 return this.orig.phase == EventPhase.PHASE_BEGIN;
30 return this.orig.phase == EventPhase.PHASE_END;
46 if (parentStack[i].orig.type == eventType)
73 findParentIndex(parentStack, groupEntry.orig.type);
/external/chromium/chrome/browser/resources/net_internals/
H A Dloggrouper.js18 this.orig = origEntry;
23 return this.orig.phase == LogEventPhase.PHASE_BEGIN;
27 return this.orig.phase == LogEventPhase.PHASE_END
42 if (parentStack[i].orig.type == eventType)
68 findParentIndex(parentStack, groupEntry.orig.type);
/external/skia/gm/
H A Dcolortype.cpp30 SkTypeface* orig = SkTypeface::CreateFromName("Times", local
32 if (NULL == orig) {
33 orig = SkTypeface::RefDefault();
35 fColorType = SkNEW_ARGS(SkGTypeface, (orig, paint));
36 orig->unref();
/external/stlport/test/eh/
H A Dtest_algo.cpp88 : orig( buf ), partitionPoint(SortClass::kRange / 2) {
109 for ( const SortClass *q = orig.begin(); q != orig.end(); q++ )
135 const SortBuffer& orig; member in struct:test_stable_partition
139 void assert_sorted_version( const SortBuffer& orig, const SortBuffer& buf );
144 EFFECTS: Asserts that buf is a stable-sorted version of orig.
146 void assert_sorted_version( const SortBuffer& orig, const SortBuffer& buf ) argument
155 for ( const SortClass *q = orig.begin(); q != orig.end(); q++ )
182 : orig( bu
193 const SortBuffer& orig; member in struct:test_stable_sort_1
210 const SortBuffer& orig; member in struct:test_stable_sort_2
227 const SortBuffer& orig; member in struct:test_inplace_merge_1
245 const SortBuffer& orig; member in struct:test_inplace_merge_2
[all...]
H A Dtest_push_back.h32 test_push_back( const C& orig ) : original( orig )
H A Dtest_push_front.h29 test_push_front( const C& orig ) : original( orig ) {
/external/skia/tests/
H A DRoundRectTest.cpp358 static void assert_transform_failure(skiatest::Reporter* reporter, const SkRRect& orig, argument
361 SkASSERT(!orig.isEmpty());
366 const SkRRect copyOfOrig = orig;
367 bool success = orig.transform(matrix, &dst);
373 REPORTER_ASSERT(reporter, copyOfOrig == orig);
374 REPORTER_ASSERT(reporter, orig != dst);
378 const SkVector& origUL = orig.radii(SkRRect::kUpperLeft_Corner); \
379 const SkVector& origUR = orig.radii(SkRRect::kUpperRight_Corner); \
380 const SkVector& origLR = orig.radii(SkRRect::kLowerRight_Corner); \
381 const SkVector& origLL = orig
388 test_transform_helper(skiatest::Reporter* reporter, const SkRRect& orig) argument
[all...]
/external/valgrind/main/VEX/priv/
H A Dhost_generic_regs.c145 ppHReg(map->orig[i]);
160 void addToHRegRemap ( HRegRemap* map, HReg orig, HReg replacement ) argument
164 if (map->orig[i] == orig)
166 if (!hregIsVirtual(orig))
167 vpanic("addToHRegMap: orig is not a vreg");
172 map->orig[map->n_used] = orig;
178 HReg lookupHRegRemap ( HRegRemap* map, HReg orig )
181 if (!hregIsVirtual(orig))
[all...]
/external/guava/guava-tests/test/com/google/common/testing/
H A DSerializableTesterTest.java38 ClassWhichDoesNotImplementEquals orig =
42 SerializableTester.reserializeAndAssert(orig);
52 ClassWhichIsAlwaysEqualButHasDifferentHashcodes orig =
56 SerializableTester.reserializeAndAssert(orig);
66 ObjectWhichIsEqualButChangesClass orig =
70 SerializableTester.reserializeAndAssert(orig);
/external/chromium_org/base/third_party/valgrind/
H A Dvalgrind.h791 #define CALL_FN_W_v(lval, orig) \
793 volatile OrigFn _orig = (orig); \
807 #define CALL_FN_W_W(lval, orig, arg1) \
809 volatile OrigFn _orig = (orig); \
827 #define CALL_FN_W_WW(lval, orig, arg1,arg2) \
829 volatile OrigFn _orig = (orig); \
849 #define CALL_FN_W_WWW(lval, orig, arg1,arg2,arg3) \
851 volatile OrigFn _orig = (orig); \
873 #define CALL_FN_W_WWWW(lval, orig, arg1,arg2,arg3,arg4) \
875 volatile OrigFn _orig = (orig); \
[all...]
/external/chromium_org/third_party/re2/util/
H A Dvalgrind.h713 #define CALL_FN_W_v(lval, orig) \
715 volatile OrigFn _orig = (orig); \
729 #define CALL_FN_W_W(lval, orig, arg1) \
731 volatile OrigFn _orig = (orig); \
748 #define CALL_FN_W_WW(lval, orig, arg1,arg2) \
750 volatile OrigFn _orig = (orig); \
769 #define CALL_FN_W_WWW(lval, orig, arg1,arg2,arg3) \
771 volatile OrigFn _orig = (orig); \
792 #define CALL_FN_W_WWWW(lval, orig, arg1,arg2,arg3,arg4) \
794 volatile OrigFn _orig = (orig); \
[all...]
/external/regex-re2/util/
H A Dvalgrind.h713 #define CALL_FN_W_v(lval, orig) \
715 volatile OrigFn _orig = (orig); \
729 #define CALL_FN_W_W(lval, orig, arg1) \
731 volatile OrigFn _orig = (orig); \
748 #define CALL_FN_W_WW(lval, orig, arg1,arg2) \
750 volatile OrigFn _orig = (orig); \
769 #define CALL_FN_W_WWW(lval, orig, arg1,arg2,arg3) \
771 volatile OrigFn _orig = (orig); \
792 #define CALL_FN_W_WWWW(lval, orig, arg1,arg2,arg3,arg4) \
794 volatile OrigFn _orig = (orig); \
[all...]
/external/valgrind/main/include/
H A Dvalgrind.h854 #define CALL_FN_W_v(lval, orig) \
856 volatile OrigFn _orig = (orig); \
872 #define CALL_FN_W_W(lval, orig, arg1) \
874 volatile OrigFn _orig = (orig); \
893 #define CALL_FN_W_WW(lval, orig, arg1,arg2) \
895 volatile OrigFn _orig = (orig); \
916 #define CALL_FN_W_WWW(lval, orig, arg1,arg2,arg3) \
918 volatile OrigFn _orig = (orig); \
941 #define CALL_FN_W_WWWW(lval, orig, arg1,arg2,arg3,arg4) \
943 volatile OrigFn _orig = (orig); \
[all...]
/external/dropbear/libtomcrypt/src/encauth/gcm/
H A Dgcm_memory.c46 void *orig; local
69 orig = gcm = XMALLOC(sizeof(*gcm));
71 orig = gcm = XMALLOC(sizeof(*gcm) + 16);
78 * note that we only modify gcm and keep orig intact. This code is not portable
101 XFREE(orig);
/external/valgrind/main/coregrind/
H A Dpub_core_redir.h86 extern Addr VG_(redir_do_lookup) ( Addr orig, Bool* isWrap );
/external/libexif/test/nls/
H A Dtest-codeset.c41 char *orig; member in struct:__anon20684
80 const char *orig = testcases[i].orig; local
81 const char *transl = gettext(testcases[i].orig);
116 orig,
128 return (my_streq(orig, orig));
/external/chromium_org/third_party/tcmalloc/vendor/src/third_party/
H A Dvalgrind.h626 #define CALL_FN_W_v(lval, orig) \
628 volatile OrigFn _orig = (orig); \
642 #define CALL_FN_W_W(lval, orig, arg1) \
644 volatile OrigFn _orig = (orig); \
661 #define CALL_FN_W_WW(lval, orig, arg1,arg2) \
663 volatile OrigFn _orig = (orig); \
682 #define CALL_FN_W_WWW(lval, orig, arg1,arg2,arg3) \
684 volatile OrigFn _orig = (orig); \
705 #define CALL_FN_W_WWWW(lval, orig, arg1,arg2,arg3,arg4) \
707 volatile OrigFn _orig = (orig); \
[all...]
/external/chromium_org/v8/src/third_party/valgrind/
H A Dvalgrind.h747 #define CALL_FN_W_v(lval, orig) \
749 volatile OrigFn _orig = (orig); \
763 #define CALL_FN_W_W(lval, orig, arg1) \
765 volatile OrigFn _orig = (orig); \
783 #define CALL_FN_W_WW(lval, orig, arg1,arg2) \
785 volatile OrigFn _orig = (orig); \
805 #define CALL_FN_W_WWW(lval, orig, arg1,arg2,arg3) \
807 volatile OrigFn _orig = (orig); \
829 #define CALL_FN_W_WWWW(lval, orig, arg1,arg2,arg3,arg4) \
831 volatile OrigFn _orig = (orig); \
[all...]
/external/v8/src/third_party/valgrind/
H A Dvalgrind.h747 #define CALL_FN_W_v(lval, orig) \
749 volatile OrigFn _orig = (orig); \
763 #define CALL_FN_W_W(lval, orig, arg1) \
765 volatile OrigFn _orig = (orig); \
783 #define CALL_FN_W_WW(lval, orig, arg1,arg2) \
785 volatile OrigFn _orig = (orig); \
805 #define CALL_FN_W_WWW(lval, orig, arg1,arg2,arg3) \
807 volatile OrigFn _orig = (orig); \
829 #define CALL_FN_W_WWWW(lval, orig, arg1,arg2,arg3,arg4) \
831 volatile OrigFn _orig = (orig); \
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
H A Dr600_blit.c269 struct texture_orig_info *orig)
277 orig->format = tex->format;
278 orig->width0 = tex->width0;
279 orig->height0 = tex->height0;
280 orig->npix0_x = rtex->surface.level[0].npix_x;
281 orig->npix0_y = rtex->surface.level[0].npix_y;
282 orig->npix_x = rtex->surface.level[level].npix_x;
283 orig->npix_y = rtex->surface.level[level].npix_y;
290 new_width = util_format_get_nblocksx(tex->format, orig->width0);
291 new_height = util_format_get_nblocksy(tex->format, orig
267 r600_compressed_to_blittable(struct pipe_resource *tex, unsigned level, struct texture_orig_info *orig) argument
302 r600_reset_blittable_to_compressed(struct pipe_resource *tex, unsigned level, struct texture_orig_info *orig) argument
[all...]

Completed in 4395 milliseconds

123456789