Searched refs:data0 (Results 1 - 25 of 87) sorted by relevance

1234

/external/skia/tests/
H A DRefDictTest.cpp19 TestRC data0, data1; local
26 dict.set("foo", &data0);
27 REPORTER_ASSERT(reporter, &data0 == dict.find("foo"));
28 REPORTER_ASSERT(reporter, !data0.unique());
30 dict.set("foo", &data0);
31 REPORTER_ASSERT(reporter, &data0 == dict.find("foo"));
32 REPORTER_ASSERT(reporter, !data0.unique());
36 REPORTER_ASSERT(reporter, data0.unique());
41 REPORTER_ASSERT(reporter, data0.unique());
44 dict.set("foo", &data0);
[all...]
H A DEncodeTest.cpp83 sk_sp<SkData> data0 = dst0.detachAsData(); local
87 REPORTER_ASSERT(r, data0->equals(data1.get()));
88 REPORTER_ASSERT(r, data0->equals(data2.get()));
89 REPORTER_ASSERT(r, data0->equals(data3.get()));
161 sk_sp<SkData> data0 = dst0.detachAsData(); local
164 REPORTER_ASSERT(r, data0->size() < data1->size());
168 SkImage::MakeFromEncoded(data0)->asLegacyBitmap(&bm0);
275 sk_sp<SkData> data0 = dst0.detachAsData(); local
278 REPORTER_ASSERT(r, data0->size() < data1->size());
282 SkImage::MakeFromEncoded(data0)
324 sk_sp<SkData> data0 = dst0.detachAsData(); local
[all...]
/external/skqp/tests/
H A DRefDictTest.cpp19 TestRC data0, data1; local
26 dict.set("foo", &data0);
27 REPORTER_ASSERT(reporter, &data0 == dict.find("foo"));
28 REPORTER_ASSERT(reporter, !data0.unique());
30 dict.set("foo", &data0);
31 REPORTER_ASSERT(reporter, &data0 == dict.find("foo"));
32 REPORTER_ASSERT(reporter, !data0.unique());
36 REPORTER_ASSERT(reporter, data0.unique());
41 REPORTER_ASSERT(reporter, data0.unique());
44 dict.set("foo", &data0);
[all...]
H A DEncodeTest.cpp82 sk_sp<SkData> data0 = dst0.detachAsData(); local
86 REPORTER_ASSERT(r, data0->equals(data1.get()));
87 REPORTER_ASSERT(r, data0->equals(data2.get()));
88 REPORTER_ASSERT(r, data0->equals(data3.get()));
160 sk_sp<SkData> data0 = dst0.detachAsData(); local
163 REPORTER_ASSERT(r, data0->size() < data1->size());
167 SkImage::MakeFromEncoded(data0)->asLegacyBitmap(&bm0, SkImage::kRO_LegacyBitmapMode);
274 sk_sp<SkData> data0 = dst0.detachAsData(); local
277 REPORTER_ASSERT(r, data0->size() < data1->size());
281 SkImage::MakeFromEncoded(data0)
323 sk_sp<SkData> data0 = dst0.detachAsData(); local
[all...]
/external/compiler-rt/test/tsan/
H A Dmemcmp_race.cc5 char *data0 = new char[10]; variable
12 sink = memcmp(data0+5, data1, size);
20 memcpy(data0+5, data2, size);
26 print_address("addr=", 1, &data0[5]);
/external/adhd/cras/src/dsp/tests/
H A Dcrossover2_test.c43 float *data0, *data1, *data2; local
57 data0 = read_raw(argv[1], &frames);
63 process(&xo2, frames, data0, data0 + frames, data1, data1 + frames,
70 write_raw(argv[3], data0, frames);
77 data0[i] += data1[i] + data2[i];
78 write_raw(argv[2], data0, frames);
80 free(data0);
H A Dcrossover_test.c29 void process(struct crossover *xo, int count, float *data0, float *data1, argument
35 data0 + start, data1 + start, data2 + start);
41 float *data0, *data1, *data2; local
55 data0 = read_raw(argv[1], &frames);
61 process(&xo, frames, data0, data1, data2);
68 process(&xo, frames, data0 + frames, data1 + frames,
75 write_raw(argv[3], data0, frames);
82 data0[i] += data1[i] + data2[i];
83 write_raw(argv[2], data0, frames);
85 free(data0);
[all...]
H A Deq2_test.c28 static void process(struct eq2 *eq2, float *data0, float *data1, int count) argument
32 eq2_process(eq2, data0 + start, data1 + start,
/external/expat/tests/
H A Dstructdata.h45 int data0; member in struct:__anon7031
61 int data0,
H A Dstructdata.c84 int data0,
104 entry->data0 = data0;
138 if (got->data0 != want->data0 ||
145 want->data0, want->data1, want->data2,
146 got->data0, got->data1, got->data2);
82 StructData_AddItem(StructData *storage, const XML_Char *s, int data0, int data1, int data2) argument
/external/adhd/cras/src/dsp/
H A Dcrossover.h59 * data0 - The input samples, also the place to store low band output.
63 void crossover_process(struct crossover *xo, int count, float *data0,
H A Deq2.h61 * data0 - The array of channel 0 audio samples.
65 void eq2_process(struct eq2 *eq2, float *data0, float *data1, int count);
H A Deq2.c53 float *data0, float *data1, int count)
80 float xL = data0[j];
99 data0[j] = yL;
116 float *data0, float *data1, int count)
145 "vld1.32 d0[0], [%[data0]] \n"
163 "vst1.f32 d2[0], [%[data0]]! \n"
167 [data0]"+r"(data0),
209 float *data0, float *data1, int count)
236 "movss (%[data0]),
52 eq2_process_one(struct biquad (*bq)[2], float *data0, float *data1, int count) argument
115 eq2_process_two_neon(struct biquad (*bq)[2], float *data0, float *data1, int count) argument
208 eq2_process_two_sse3(struct biquad (*bq)[2], float *data0, float *data1, int count) argument
317 eq2_process(struct eq2 *eq2, float *data0, float *data1, int count) argument
[all...]
H A Dcrossover.c29 * data0 --+-- lp --> data0
33 static void lr4_split(struct lr4 *lp, struct lr4 *hp, int count, float *data0, argument
63 x = data0[i];
72 data0[i] = z;
182 void crossover_process(struct crossover *xo, int count, float *data0, argument
185 lr4_split(&xo->lp[0], &xo->hp[0], count, data0, data1);
186 lr4_merge(&xo->lp[1], &xo->hp[1], count, data0);
/external/opencv/cv/src/
H A Dcvcalccontrasthistogram.cpp106 uchar *data0 = img[0];
113 for( y = 0; y < size.height; y++, data0 += step )
117 int v1_r = MIN( data0[x], data0[x + 1] );
118 int v2_r = MAX( data0[x], data0[x + 1] );
131 int v1_d = MIN( data0[x], data0[x + step] );
132 int v2_d = MAX( data0[x], data0[
[all...]
/external/libopus/silk/arm/
H A DNSQ_neon.h82 opus_int32 silk_NSQ_noise_shape_feedback_loop_neon(const opus_int32 *data0, opus_int32 *data1, const opus_int16 *coef, opus_int order);
90 #define silk_NSQ_noise_shape_feedback_loop(data0, data1, coef, order, arch) ((void)arch,silk_NSQ_noise_shape_feedback_loop_neon(data0, data1, coef, order))
104 const opus_int32 *data0, opus_int32 *data1, const opus_int16 *coef,
108 #define silk_NSQ_noise_shape_feedback_loop(data0, data1, coef, order, arch) \
109 (SILK_NSQ_NOISE_SHAPE_FEEDBACK_LOOP_IMPL[(arch)&OPUS_ARCHMASK](data0, data1, \
H A DNSQ_neon.c72 opus_int32 silk_NSQ_noise_shape_feedback_loop_neon(const opus_int32 *data0, opus_int32 *data1, const opus_int16 *coef, opus_int order) argument
77 int32x4_t a00 = vdupq_n_s32(data0[0]);
80 int32x4_t a0 = vextq_s32 (a00, a01, 3); /* data0[0] data1[0] ...[2] */
111 return silk_NSQ_noise_shape_feedback_loop_c(data0, data1, coef, order);
H A Darm_silk_map.c94 const opus_int32 *data0, opus_int32 *data1, const opus_int16 *coef,
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
H A DChapter2_5Test.java36 Map<String, Object> data0 = (Map<String, Object>) list.get(0);
37 Date date = (Date) data0.get("Time");
39 assertEquals("ed", data0.get("User"));
40 assertEquals("This is an error message for the log file", data0.get("Warning"));
/external/brotli/java/org/brotli/dec/
H A DDictionaryData.java22 ByteBuffer dictionary, String data0, String data1, String skipFlip) {
23 int n0 = data0.length();
30 dictionary.put(offset, (byte) data0.charAt(i));
21 unpackDictionaryData( ByteBuffer dictionary, String data0, String data1, String skipFlip) argument
/external/libopus/silk/
H A DNSQ.h67 static OPUS_INLINE opus_int32 silk_NSQ_noise_shape_feedback_loop_c(const opus_int32 *data0, opus_int32 *data1, const opus_int16 *coef, opus_int order) argument
73 tmp2 = data0[0];
95 #define silk_NSQ_noise_shape_feedback_loop(data0, data1, coef, order, arch) ((void)arch,silk_NSQ_noise_shape_feedback_loop_c(data0, data1, coef, order))
/external/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_string.cc20 char data0[7] = {1, 2, 3, 4, 5, 6, 7}; local
22 MainThread().Memcpy(data+1, data0+1, 5);
/external/adhd/cras/src/tests/
H A Ddsp_core_unittest.cc148 float *data0 = (float *)malloc(sizeof(float) * len); local
154 memset(data0, 0, sizeof(float) * len);
156 add_sine(data0, len, f_low, 0, 1); // 10Hz sine, magnitude = 1
157 add_sine(data0, len, f_high, 0, 1); // 1000Hz sine, magnitude = 1
165 eq2_process(eq2, data0, data1, len);
166 EXPECT_NEAR(1, magnitude_at(data0, len, f_low), 0.01);
167 EXPECT_NEAR(0, magnitude_at(data0, len, f_high), 0.01);
176 memset(data0, 0, sizeof(float) * len);
178 add_sine(data0, len, f_low, 0, 1);
179 add_sine(data0, le
[all...]
/external/tensorflow/tensorflow/core/kernels/
H A Ddynamic_stitch_op.cc60 // Check if data0.shape[indices0.dims():] == data1.shape[indices1.dims():]
61 static bool SameExtraShape(const Tensor& data0, const Tensor& indices0, argument
63 const int extra0 = data0.dims() - indices0.dims();
67 if (data0.dim_size(indices0.dims() + i) !=
102 const Tensor& data0 = (*data_inputs)[0]; local
114 c, input_num == 0 || SameExtraShape(data0, indices0, data, indices),
118 ":], got data[0].shape = ", data0.shape().DebugString(),
129 for (int d = indices0.dims(); d < data0.dims(); d++) {
130 result_shape.AddDim(data0.dim_size(d));
/external/strace/tests/
H A Daio.c55 void *data0 = tail_alloc(sizeof_data0); local
62 .aio_buf = (unsigned long) data0,
78 .iov_base = data0,
82 .iov_base = data0 + sizeof_data0 / 4,
249 cb[0].aio_data, data0, sizeof_data0, cb[0].aio_offset,

Completed in 350 milliseconds

1234