Home
last modified time | relevance | path

Searched refs:orig (Results 1 – 25 of 361) sorted by relevance

12345678910>>...15

/external/selinux/libsepol/cil/src/
Dcil_copy_ast.c100 struct cil_block *orig = data; in cil_copy_block() local
101 char *key = orig->datum.name; in cil_copy_block()
118 struct cil_blockabstract *orig = data; in cil_copy_blockabstract() local
123 new->block_str = orig->block_str; in cil_copy_blockabstract()
132 struct cil_blockinherit *orig = data; in cil_copy_blockinherit() local
137 new->block_str = orig->block_str; in cil_copy_blockinherit()
138 new->block = orig->block; in cil_copy_blockinherit()
147 struct cil_policycap *orig = data; in cil_copy_policycap() local
148 char *key = orig->datum.name; in cil_copy_policycap()
165 struct cil_perm *orig = data; in cil_copy_perm() local
[all …]
/external/regex-re2/util/
Dvalgrind.h713 #define CALL_FN_W_v(lval, orig) \ argument
715 volatile OrigFn _orig = (orig); \
729 #define CALL_FN_W_W(lval, orig, arg1) \ argument
731 volatile OrigFn _orig = (orig); \
748 #define CALL_FN_W_WW(lval, orig, arg1,arg2) \ argument
750 volatile OrigFn _orig = (orig); \
769 #define CALL_FN_W_WWW(lval, orig, arg1,arg2,arg3) \ argument
771 volatile OrigFn _orig = (orig); \
792 #define CALL_FN_W_WWWW(lval, orig, arg1,arg2,arg3,arg4) \ argument
794 volatile OrigFn _orig = (orig); \
[all …]
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/QA/
DruniSACRate.txt8 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_n…
9 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 30 -MAXRATE 32000 ../data/orig/saws…
10 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_n…
11 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 30 -MAXRATE 32000 ../data/orig/saws…
12 ../Release/kenny.exe 13000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/sawsweep_380_60.pcm $OUTDIR/out_n…
13 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 60 -MAXRATE 32000 ../data/orig/saws…
14 ../Release/kenny.exe 13000 -INIT_RATE 32000 -FIXED_FL -FL 60 -MAX 100 ../data/orig/sawsweep_380_60.…
16 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/longspeech.pcm $OUTDIR/out_napi_1…
17 ../Release/kenny.exe ../data/orig/bottlenecks.txt -FIXED_FL -FL 30 -MAXRATE 32000 ../data/orig/long…
18 ../Release/kenny.exe 13000 -FIXED_FL -FL 30 -MAX 100 ../data/orig/longspeech.pcm $OUTDIR/out_napi_1…
[all …]
/external/valgrind/include/
Dvalgrind.h1238 #define CALL_FN_W_v(lval, orig) \ argument
1240 volatile OrigFn _orig = (orig); \
1256 #define CALL_FN_W_W(lval, orig, arg1) \ argument
1258 volatile OrigFn _orig = (orig); \
1277 #define CALL_FN_W_WW(lval, orig, arg1,arg2) \ argument
1279 volatile OrigFn _orig = (orig); \
1300 #define CALL_FN_W_WWW(lval, orig, arg1,arg2,arg3) \ argument
1302 volatile OrigFn _orig = (orig); \
1325 #define CALL_FN_W_WWWW(lval, orig, arg1,arg2,arg3,arg4) \ argument
1327 volatile OrigFn _orig = (orig); \
[all …]
/external/v8/src/third_party/valgrind/
Dvalgrind.h747 #define CALL_FN_W_v(lval, orig) \ argument
749 volatile OrigFn _orig = (orig); \
763 #define CALL_FN_W_W(lval, orig, arg1) \ argument
765 volatile OrigFn _orig = (orig); \
783 #define CALL_FN_W_WW(lval, orig, arg1,arg2) \ argument
785 volatile OrigFn _orig = (orig); \
805 #define CALL_FN_W_WWW(lval, orig, arg1,arg2,arg3) \ argument
807 volatile OrigFn _orig = (orig); \
829 #define CALL_FN_W_WWWW(lval, orig, arg1,arg2,arg3,arg4) \ argument
831 volatile OrigFn _orig = (orig); \
[all …]
/external/gptfdisk/
Dguid.cc37 GUIDData::GUIDData(const GUIDData & orig) { in GUIDData() argument
38 memcpy(uuidData, orig.uuidData, sizeof(uuidData)); in GUIDData()
41 GUIDData::GUIDData(const string & orig) { in GUIDData() argument
42 operator=(orig); in GUIDData()
45 GUIDData::GUIDData(const char * orig) { in GUIDData() argument
46 operator=(orig); in GUIDData()
52 GUIDData & GUIDData::operator=(const GUIDData & orig) { in operator =() argument
53 memcpy(uuidData, orig.uuidData, sizeof(uuidData)); in operator =()
66 GUIDData & GUIDData::operator=(const string & orig) { in operator =() argument
76 if ((orig[0] == 'R') || (orig[0] == 'r')) { in operator =()
[all …]
Dmbrpart.cc60 MBRPart::MBRPart(const MBRPart& orig) { in MBRPart() argument
62 operator=(orig); in MBRPart()
69 MBRPart& MBRPart::operator=(const MBRPart& orig) { in operator =() argument
72 status = orig.status; in operator =()
74 firstSector[i] = orig.firstSector[i]; in operator =()
75 lastSector[i] = orig.lastSector[i]; in operator =()
77 partitionType = orig.partitionType; in operator =()
78 firstLBA = orig.firstLBA; in operator =()
79 lengthLBA = orig.lengthLBA; in operator =()
80 includeAs = orig.includeAs; in operator =()
[all …]
Dguid.h45 GUIDData(const GUIDData & orig);
46 GUIDData(const string & orig);
47 GUIDData(const char * orig);
51 GUIDData & operator=(const GUIDData & orig);
52 GUIDData & operator=(const string & orig);
53 GUIDData & operator=(const char * orig);
58 int operator==(const GUIDData & orig) const;
59 int operator!=(const GUIDData & orig) const;
/external/llvm/test/CodeGen/SystemZ/
Dinsert-01.ll7 define i32 @f1(i32 %orig, i8 *%ptr) {
14 %ptr1 = and i32 %orig, -256
20 define i32 @f2(i32 %orig, i8 *%ptr) {
27 %ptr1 = and i32 %orig, -256
34 define i32 @f3(i32 %orig, i8 *%ptr) {
41 %ptr1 = and i32 %orig, -512
47 define i32 @f4(i32 %orig, i8 *%ptr) {
54 %ptr1 = and i32 %orig, -512
60 define i32 @f5(i32 %orig, i8 *%ptr) {
67 %ptr1 = shl i32 %orig, 8
[all …]
Dinsert-02.ll7 define i64 @f1(i64 %orig, i8 *%ptr) {
14 %ptr1 = and i64 %orig, -256
20 define i64 @f2(i64 %orig, i8 *%ptr) {
27 %ptr1 = and i64 %orig, -256
34 define i64 @f3(i64 %orig, i8 *%ptr) {
41 %ptr1 = and i64 %orig, -512
47 define i64 @f4(i64 %orig, i8 *%ptr) {
54 %ptr1 = and i64 %orig, -512
60 define i64 @f5(i64 %orig, i8 *%ptr) {
67 %ptr1 = shl i64 %orig, 8
[all …]
Dcond-store-03.ll17 %orig = load i32 , i32 *%ptr
18 %res = select i1 %cond, i32 %orig, i32 %alt
33 %orig = load i32 , i32 *%ptr
34 %res = select i1 %cond, i32 %alt, i32 %orig
50 %orig = load i32 , i32 *%ptr
51 %ext = sext i32 %orig to i64
68 %orig = load i32 , i32 *%ptr
69 %ext = sext i32 %orig to i64
87 %orig = load i32 , i32 *%ptr
88 %ext = zext i32 %orig to i64
[all …]
Dcond-store-02.ll18 %orig = load i16 , i16 *%ptr
19 %res = select i1 %cond, i16 %orig, i16 %alt
34 %orig = load i16 , i16 *%ptr
35 %res = select i1 %cond, i16 %alt, i16 %orig
51 %orig = load i16 , i16 *%ptr
52 %ext = sext i16 %orig to i32
69 %orig = load i16 , i16 *%ptr
70 %ext = sext i16 %orig to i32
88 %orig = load i16 , i16 *%ptr
89 %ext = zext i16 %orig to i32
[all …]
Dcond-store-01.ll18 %orig = load i8 , i8 *%ptr
19 %res = select i1 %cond, i8 %orig, i8 %alt
34 %orig = load i8 , i8 *%ptr
35 %res = select i1 %cond, i8 %alt, i8 %orig
51 %orig = load i8 , i8 *%ptr
52 %ext = sext i8 %orig to i32
69 %orig = load i8 , i8 *%ptr
70 %ext = sext i8 %orig to i32
88 %orig = load i8 , i8 *%ptr
89 %ext = zext i8 %orig to i32
[all …]
Dcond-store-04.ll17 %orig = load i64 , i64 *%ptr
18 %res = select i1 %cond, i64 %orig, i64 %alt
33 %orig = load i64 , i64 *%ptr
34 %res = select i1 %cond, i64 %alt, i64 %orig
50 %orig = load i64 , i64 *%ptr
51 %res = select i1 %cond, i64 %orig, i64 %alt
69 %orig = load i64 , i64 *%ptr
70 %res = select i1 %cond, i64 %orig, i64 %alt
86 %orig = load i64 , i64 *%ptr
87 %res = select i1 %cond, i64 %orig, i64 %alt
[all …]
Dcond-store-06.ll17 %orig = load double , double *%ptr
18 %res = select i1 %cond, double %orig, double %alt
33 %orig = load double , double *%ptr
34 %res = select i1 %cond, double %alt, double %orig
50 %orig = load double , double *%ptr
51 %res = select i1 %cond, double %orig, double %alt
67 %orig = load double , double *%ptr
68 %res = select i1 %cond, double %orig, double %alt
84 %orig = load double , double *%ptr
85 %res = select i1 %cond, double %orig, double %alt
[all …]
Dcond-store-05.ll17 %orig = load float , float *%ptr
18 %res = select i1 %cond, float %orig, float %alt
33 %orig = load float , float *%ptr
34 %res = select i1 %cond, float %alt, float %orig
50 %orig = load float , float *%ptr
51 %res = select i1 %cond, float %orig, float %alt
67 %orig = load float , float *%ptr
68 %res = select i1 %cond, float %orig, float %alt
84 %orig = load float , float *%ptr
85 %res = select i1 %cond, float %orig, float %alt
[all …]
Dcond-store-07.ll14 %orig = load i32 , i32 *%ptr
15 %res = select i1 %cond, i32 %orig, i32 %alt
27 %orig = load i32 , i32 *%ptr
28 %res = select i1 %cond, i32 %alt, i32 %orig
41 %orig = load i32 , i32 *%ptr
42 %ext = sext i32 %orig to i64
56 %orig = load i32 , i32 *%ptr
57 %ext = sext i32 %orig to i64
72 %orig = load i32 , i32 *%ptr
73 %ext = zext i32 %orig to i64
[all …]
/external/skia/tests/
DRoundRectTest.cpp497 static void assert_transform_failure(skiatest::Reporter* reporter, const SkRRect& orig, in assert_transform_failure() argument
500 SkASSERT(!orig.isEmpty()); in assert_transform_failure()
505 const SkRRect copyOfOrig = orig; in assert_transform_failure()
506 bool success = orig.transform(matrix, &dst); in assert_transform_failure()
512 REPORTER_ASSERT(reporter, copyOfOrig == orig); in assert_transform_failure()
513 REPORTER_ASSERT(reporter, orig != dst); in assert_transform_failure()
517 const SkVector& origUL = orig.radii(SkRRect::kUpperLeft_Corner); \
518 const SkVector& origUR = orig.radii(SkRRect::kUpperRight_Corner); \
519 const SkVector& origLR = orig.radii(SkRRect::kLowerRight_Corner); \
520 const SkVector& origLL = orig.radii(SkRRect::kLowerLeft_Corner); \
[all …]
/external/mesa3d/src/gallium/state_trackers/vega/
Dbezier.c330 static enum shift_result shift(const struct bezier *orig, in shift() argument
336 VGboolean p1_p2_equal = (orig->x1 == orig->x2 && orig->y1 == orig->y2); in shift()
337 VGboolean p2_p3_equal = (orig->x2 == orig->x3 && orig->y2 == orig->y3); in shift()
338 VGboolean p3_p4_equal = (orig->x3 == orig->x4 && orig->y3 == orig->y4); in shift()
346 points[np][0] = orig->x1; in shift()
347 points[np][1] = orig->y1; in shift()
351 points[np][0] = orig->x2; in shift()
352 points[np][1] = orig->y2; in shift()
357 points[np][0] = orig->x3; in shift()
358 points[np][1] = orig->y3; in shift()
[all …]
/external/ceres-solver/internal/ceres/
Dtriplet_sparse_matrix_test.cc102 TripletSparseMatrix orig(2, 5, 4); in TEST() local
103 orig.mutable_rows()[0] = 0; in TEST()
104 orig.mutable_cols()[0] = 1; in TEST()
105 orig.mutable_values()[0] = 2.5; in TEST()
107 orig.mutable_rows()[1] = 1; in TEST()
108 orig.mutable_cols()[1] = 4; in TEST()
109 orig.mutable_values()[1] = 5.2; in TEST()
110 orig.set_num_nonzeros(2); in TEST()
112 TripletSparseMatrix cpy(orig); in TEST()
130 TripletSparseMatrix orig(2, 5, 4); in TEST() local
[all …]
/external/mesa3d/src/gallium/drivers/radeonsi/
Dr600_blit.c269 struct texture_orig_info *orig) in r600_compressed_to_blittable() argument
277 orig->format = tex->format; in r600_compressed_to_blittable()
278 orig->width0 = tex->width0; in r600_compressed_to_blittable()
279 orig->height0 = tex->height0; in r600_compressed_to_blittable()
280 orig->npix0_x = rtex->surface.level[0].npix_x; in r600_compressed_to_blittable()
281 orig->npix0_y = rtex->surface.level[0].npix_y; in r600_compressed_to_blittable()
282 orig->npix_x = rtex->surface.level[level].npix_x; in r600_compressed_to_blittable()
283 orig->npix_y = rtex->surface.level[level].npix_y; in r600_compressed_to_blittable()
290 new_width = util_format_get_nblocksx(tex->format, orig->width0); in r600_compressed_to_blittable()
291 new_height = util_format_get_nblocksy(tex->format, orig->height0); in r600_compressed_to_blittable()
[all …]
/external/mesa3d/src/gallium/drivers/r600/
Dr600_blit.c572 struct texture_orig_info *orig) in r600_compressed_to_blittable() argument
579 orig->format = tex->format; in r600_compressed_to_blittable()
580 orig->width0 = tex->width0; in r600_compressed_to_blittable()
581 orig->height0 = tex->height0; in r600_compressed_to_blittable()
582 orig->npix0_x = rtex->surface.level[0].npix_x; in r600_compressed_to_blittable()
583 orig->npix0_y = rtex->surface.level[0].npix_y; in r600_compressed_to_blittable()
584 orig->npix_x = rtex->surface.level[level].npix_x; in r600_compressed_to_blittable()
585 orig->npix_y = rtex->surface.level[level].npix_y; in r600_compressed_to_blittable()
592 new_width = util_format_get_nblocksx(tex->format, orig->width0); in r600_compressed_to_blittable()
593 new_height = util_format_get_nblocksy(tex->format, orig->height0); in r600_compressed_to_blittable()
[all …]
/external/autotest/client/tools/
Ddiffprofile27 orig = {} variable
33 if orig.has_key(key):
34 orig[key] += count
36 orig[key] = count
52 if len(orig) < 2* results_per_sign or len(new) < 2 * results_per_sign:
57 if orig.has_key(key) and orig[key] > 0:
58 pct = (100 * diff[key]) / orig[key]
/external/valgrind/VEX/unused/
Ddispatch.c14 char* find_translation ( char* orig ) in find_translation() argument
18 if (transtab[i].orig == orig) in find_translation()
28 char* orig; member
44 void add_translation ( char* orig, int orig_size, char* trans, int trans_size ) in add_translation() argument
48 transtab[n_transtab_used].orig = orig; in add_translation()
/external/e2fsprogs/tests/i_e2image/
Di_e2image.md51 i_e2image/image1024.orig
2 d34914e0da07bdae80ab02288118fae2 image1024.orig
6 i_e2image/image2048.orig
7 aa9f702de181188f2a6d2c5158686c09 image2048.orig
11 i_e2image/image4096.orig
12 1d3e7f15b2ce9ca07aa23c32951c5176 image4096.orig

12345678910>>...15