HomeSort by relevance Sort by last modified time
    Searched defs:src1 (Results 1 - 25 of 38) sorted by null

1 2

  /system/vold/tests/
VolumeManager_test.cpp 41 const char* src1 = ""; local
51 EXPECT_FALSE(VolumeManager::asecHash(src1, dst, sizeof(buffer)) == NULL)
  /external/qemu/target-i386/
helper_template.h 58 target_long src1, src2; local
59 src1 = CC_SRC;
61 cf = (DATA_TYPE)CC_DST < (DATA_TYPE)src1;
63 af = (CC_DST ^ src1 ^ src2) & 0x10;
66 of = lshift((src1 ^ src2 ^ -1) & (src1 ^ CC_DST), 12 - DATA_BITS) & CC_O;
73 target_long src1;
74 src1 = CC_SRC;
75 cf = (DATA_TYPE)CC_DST < (DATA_TYPE)src1;
82 target_long src1, src2
    [all...]
  /external/skia/gm/
poly2poly.cpp 69 const int src1[] = { 0, 0 }; local
71 doDraw(canvas, &paint, src1, dst1, 1);
  /external/skia/samplecode/
SamplePolyToPoly.cpp 44 const SkScalar src1[] = { local
52 success = m2.setPolyToPoly((const SkPoint*)src1, (SkPoint*)dst1, 4);
131 const int src1[] = { 0, 0 }; local
133 doDraw(canvas, &paint, src1, dst1, 1);
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
sad_inline.h 37 __inline int32 sad_4pixel(int32 src1, int32 src2, int32 mask)
41 x7 = src2 ^ src1; /* check odd/even combination */
42 if ((uint32)src2 >= (uint32)src1)
44 src1 = src2 - src1; /* subs */
48 src1 = src1 - src2;
50 x7 = x7 ^ src1; /* only odd bytes need to add carry */
53 src1 = src1 + (x7 >> 7); /* add 0xFF to the negative byte, add back carry *
190 EOR x7, src2, src1; \/* check odd\/even combination *\/ local
191 SUBS src1, src2, src1; local
192 EOR x7, x7, src1; local
196 ADD src1, src1, x7, asr #7; \/* add 0xFF to the negative byte, add back carry *\/ local
197 EOR src1, src1, x7, asr #7; \/* take absolute value of negative byte *\/ local
209 EOR x7, src2, src1; \/* check odd\/even combination *\/ local
210 ADDS src1, src2, src1; local
211 EOR x7, x7, src1; \/* only odd bytes need to add carry *\/ local
214 SUB src1, src1, x7, asr #7; \/* add 0xFF to the negative byte, add back carry *\/ local
215 EOR src1, src1, x7, asr #7; \/* take absolute value of negative byte *\/ local
    [all...]
  /sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/internal/repository/archives/
ArchiveInstallerTest.java 126 SdkSource src1 = new SdkRepoSource("http://repo.example.com/url", "repo1"); local
127 MockEmptyPackage p = createRemoteEmptyPackage(src1, "testPkg");
164 SdkSource src1 = new SdkRepoSource("http://repo.example.com/url", "repo1"); local
166 MockExtraPackage newPkg = createRemoteExtraPackage(src1, "vendor1", "oldPath", 2, 1);
167 MockExtraPackage oldPkg = new MockExtraPackage(src1, "vendor1", "oldPath", 1, 1);
222 SdkSource src1 = new SdkRepoSource("http://repo.example.com/url", "repo1"); local
225 src1,
232 src1, // source
  /external/jpeg/
jccolor.c 323 UINT32 src1 = *in++; local
326 *out0++ = PACK(B0(src0), B3(src0), B2(src1), B1(src2));
327 *out1++ = PACK(B1(src0), B0(src1), B3(src1), B2(src2));
328 *out2++ = PACK(B2(src0), B1(src1), B0(src2), B3(src2));
  /external/opencv/cxcore/src/
cxlogic.cpp 63 ( const uchar* src1, int step1, const uchar* src2, int step2, \
64 uchar* dst, int step, CvSize size ), (src1, step1, src2, step2, dst, step, size) )\
66 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
70 if( (((size_t)src1 | (size_t)src2 | (size_t)dst) & 3) == 0 ) \
74 int t0 = __op__(((const int*)(src1+i))[0], ((const int*)(src2+i))[0]);\
75 int t1 = __op__(((const int*)(src1+i))[1], ((const int*)(src2+i))[1]);\
80 t0 = __op__(((const int*)(src1+i))[2], ((const int*)(src2+i))[2]); \
81 t1 = __op__(((const int*)(src1+i))[3], ((const int*)(src2+i))[3]); \
89 int t = __op__(*(const int*)(src1+i), *(const int*)(src2+i)); \
96 int t = __op__(((const uchar*)src1)[i],((const uchar*)src2)[i]);
352 CvMat srcstub1, *src1 = (CvMat*)srcarr1; local
    [all...]
cxcopy.cpp 304 CvSparseMat* src1 = (CvSparseMat*)src; local
309 dst1->dims = src1->dims;
310 memcpy( dst1->size, src1->size, src1->dims*sizeof(src1->size[0]));
311 dst1->valoffset = src1->valoffset;
312 dst1->idxoffset = src1->idxoffset;
315 if( src1->heap->active_count >= dst1->hashsize*CV_SPARSE_HASH_RATIO )
318 dst1->hashsize = src1->hashsize;
325 for( node = cvInitSparseMatIterator( src1, &iterator )
841 const uchar* src1 = src + (size.height - 1)*srcstep; local
    [all...]
cxarithm.cpp 60 worktype t0 = __op__((src1)[i], (src2)[i]); \
61 worktype t1 = __op__((src1)[i+1], (src2)[i+1]); \
66 t0 = __op__((src1)[i+2],(src2)[i+2]); \
67 t1 = __op__((src1)[i+3],(src2)[i+3]); \
75 worktype t0 = __op__((src1)[i],(src2)[i]); \
82 ( const type* src1, int step1, const type* src2, int step2, \
84 (src1, step1, src2, step2, dst, step, size) ) \
86 step1/=sizeof(src1[0]); step2/=sizeof(src2[0]); step/=sizeof(dst[0]); \
90 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
92 worktype t0 = __op__((src1)[0],(src2)[0]);
286 CvMat srcstub1, srcstub2, *src1, *src2; local
761 CvMat srcstub1, *src1 = (CvMat*)srcarr1; local
1321 CvMat srcstub1, *src1 = (CvMat*)srcarr1; local
1669 CvMat srcstub1, *src1 = (CvMat*)srcarr1; local
    [all...]
cxcmp.cpp 57 worktype a1 = _toggle_macro_(src1[x]), \
67 worktype a1 = _toggle_macro_(src1[x*2]), \
70 a1 = _toggle_macro_(src1[x*2+1]); \
81 worktype a1 = _toggle_macro_(src1[x*3]), \
84 a1 = _toggle_macro_(src1[x*3+1]); \
88 a1 = _toggle_macro_(src1[x*3+2]); \
99 worktype a1 = _toggle_macro_(src1[x*4]), \
102 a1 = _toggle_macro_(src1[x*4+1]); \
106 a1 = _toggle_macro_(src1[x*4+2]); \
110 a1 = _toggle_macro_(src1[x*4+3]);
256 CvMat srcstub1, *src1 = (CvMat*)srcarr1; local
355 CvMat srcstub1, *src1 = (CvMat*)srcarr; local
567 CvMat srcstub1, *src1 = (CvMat*)srcarr1; local
705 CvMat srcstub1, *src1 = (CvMat*)srcarr; local
975 CvMat srcstub1, *src1 = (CvMat*)srcarr1; local
1076 CvMat srcstub1, *src1 = (CvMat*)srcarr; local
1425 CvMat srcstub1, *src1 = (CvMat*)srcarr1; local
    [all...]
  /external/qemu/distrib/jpeg-6b/
jccolor.c 416 UINT32 src1 = *in++; local
419 *out0++ = PACK(B0(src0), B3(src0), B2(src1), B1(src2));
420 *out1++ = PACK(B1(src0), B0(src1), B3(src1), B2(src2));
421 *out2++ = PACK(B2(src0), B1(src1), B0(src2), B3(src2));
  /external/v8/src/ia32/
lithium-gap-resolver-ia32.cc 440 Operand src1 = cgen_->HighOperand(source); local
446 __ mov(tmp, src1);
  /external/webkit/Source/WebKit/chromium/tests/
KURLTest.cpp 563 const char* src1 = "http://user:pass@google.com/foo/bar.html?baz=query#ref"; local
564 WebCore::KURL kurl1(WebCore::ParsedURLString, src1);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
sad_inline.h 42 __inline int32 sad_4pixel(int32 src1, int32 src2, int32 mask)
46 x7 = src2 ^ src1; /* check odd/even combination */
47 if ((uint32)src2 >= (uint32)src1)
49 src1 = src2 - src1; /* subs */
53 src1 = src1 - src2;
55 x7 = x7 ^ src1; /* only odd bytes need to add carry */
58 src1 = src1 + (x7 >> 7); /* add 0xFF to the negative byte, add back carry *
195 EOR x7, src2, src1; \/* check odd\/even combination *\/ local
196 SUBS src1, src2, src1; local
197 EOR x7, x7, src1; local
201 ADD src1, src1, x7, asr #7; \/* add 0xFF to the negative byte, add back carry *\/ local
202 EOR src1, src1, x7, asr #7; \/* take absolute value of negative byte *\/ local
214 EOR x7, src2, src1; \/* check odd\/even combination *\/ local
215 ADDS src1, src2, src1; local
216 EOR x7, x7, src1; \/* only odd bytes need to add carry *\/ local
219 SUB src1, src1, x7, asr #7; \/* add 0xFF to the negative byte, add back carry *\/ local
220 EOR src1, src1, x7, asr #7; \/* take absolute value of negative byte *\/ local
    [all...]
motion_comp.cpp 1720 Int *src1, *src2; local
1798 Int *src1, *src2; local
    [all...]
  /cts/tools/signature-tools/test/signature/converter/
ConvertAnnotationTest.java 301 CompilationUnit src1 = new CompilationUnit("a.A", local
311 IApi api = convert(src1, src2);
338 CompilationUnit src1 = new CompilationUnit("a.A", local
348 IApi api = convert(src1, src2);
366 CompilationUnit src1 = new CompilationUnit("a.A", local
376 IApi api = convert(src1, src2);
420 CompilationUnit src1 = new CompilationUnit("a.A", local
428 IApi api = convert(src1, src2);
451 CompilationUnit src1 = new CompilationUnit("a.A", local
460 IApi api = convert(src1, src2);
478 CompilationUnit src1 = new CompilationUnit("a.A", local
    [all...]
  /external/icu4c/test/cintltst/
idnatest.c 652 const UChar* src1 = data[i]; local
653 int32_t src1Len = u_strlen(src1);
662 dest1Len = uidna_toASCII(src1, src1Len, dest1, dest1Len,UIDNA_DEFAULT, &ps, &status);
    [all...]
  /external/qemu/audio/
dsoundaudio.c 357 struct st_sample *src1 = hw->mix_buf + hw->rpos; local
368 hw->clip (dst, src1, src_len1);
fmodaudio.c 140 struct st_sample *src1 = hw->mix_buf + hw->rpos; local
151 hw->clip (dst, src1, src_len1);
  /external/skia/src/core/
SkGeometry.cpp 865 const float src1[] = { 0, 0 }; local
877 { TEST_COLLAPS_ENTRY(src1), 1 },
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/
OpenWnnDictionaryImplJni.c 161 NJ_UINT8 src1, src2, src3; local
166 /* src1 src2 src3 */
172 src1 = ( ( ( src_tmp[ 0 ] & 0x03 ) << 2 ) | ( ( src_tmp[ 1 ] & 0xc0 ) >> 6 ) ) + 1;
176 dst[ o + 0 ] = 0xf0 | ( ( src1 & 0x1c ) >> 2 );
177 dst[ o + 1 ] = 0x80 | ( ( src1 & 0x03 ) << 4 ) | ( ( src2 & 0xf0 ) >> 4 );
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/tests/com/android/sdkuilib/internal/repository/sdkman2/
PackagesDiffLogicTest.java 80 SdkSource src1 = new SdkRepoSource("http://example.com/url", "repo1"); local
85 new MockEmptyPackage(src1, "some pkg", 1)
96 assertFalse(m.updateSourcePackages(true /*sortByApi*/, src1, new Package[] {
97 new MockEmptyPackage(src1, "some pkg", 1)
110 SdkSource src1 = new SdkRepoSource("http://example.com/url", "repo1"); local
115 new MockEmptyPackage(src1, "some pkg", 1)
126 assertTrue(m.updateSourcePackages(true /*sortByApi*/, src1, new Package[] {
127 new MockEmptyPackage(src1, "other pkg", 1)
141 SdkSource src1 = new SdkRepoSource("http://example.com/url", "repo1"); local
148 new MockEmptyPackage(src1, "type1", 1
172 SdkSource src1 = new SdkRepoSource("http:\/\/example.com\/url", "repo1"); local
215 SdkSource src1 = new SdkRepoSource("http:\/\/example.com\/url", "repo1"); local
271 SdkSource src1 = new SdkRepoSource("http:\/\/example.com\/url", "repo1"); local
309 SdkSource src1 = new SdkRepoSource("http:\/\/example.com\/url1", "repo1"); local
344 SdkSource src1 = new SdkRepoSource("http:\/\/1.example.com\/url1", "repo1"); local
513 SdkSource src1 = new SdkRepoSource("http:\/\/example.com\/url", "repo1"); local
547 SdkSource src1 = new SdkRepoSource("http:\/\/example.com\/url", "repo1"); local
578 SdkSource src1 = new SdkRepoSource("http:\/\/example.com\/url", "repo1"); local
614 SdkSource src1 = new SdkRepoSource("http:\/\/example.com\/url", "repo1"); local
661 SdkSource src1 = new SdkRepoSource("http:\/\/example.com\/url", "repo1"); local
694 SdkSource src1 = new SdkRepoSource("http:\/\/1.example.com\/url1", "repo1"); local
844 SdkSource src1 = new SdkRepoSource("http:\/\/example.com\/url", "repo1"); local
890 SdkSource src1 = new SdkRepoSource("http:\/\/example.com\/url", "repo1"); local
940 SdkSource src1 = new SdkRepoSource("http:\/\/1.example.com\/url1", "repo1"); local
1055 SdkSource src1 = new SdkRepoSource("http:\/\/example.com\/url", "repo1"); local
1148 SdkSource src1 = new SdkRepoSource("http:\/\/example.com\/url", "repo1"); local
1180 SdkSource src1 = new SdkRepoSource("http:\/\/example.com\/url1", "repo1"); local
1245 SdkSource src1 = new SdkRepoSource("http:\/\/example.com\/url1", "repo1"); local
1294 SdkSource src1 = new SdkRepoSource("http:\/\/1.example.com\/url1", "repo1"); local
1388 SdkSource src1 = new SdkRepoSource("http:\/\/1.example.com\/url1", "repo1"); local
    [all...]
  /external/opencv/cv/src/
cvderiv.cpp 575 const int *src0 = src[-1], *src1 = src[0], *src2 = src[1]; local
580 int s0 = src0[i] - src1[i]*2 + src2[i] + src1[i+width];
581 int s1 = src0[i+1] - src1[i+1]*2 + src2[i+1] + src1[i+width+1];
586 dst[i] = (short)(src0[i] - src1[i]*2 + src2[i] + src1[i+width]);
591 int s0 = src0[i] - src1[i]*2 + src2[i] +
592 src0[i+width] + src1[i+width]*2 + src2[i+width];
593 int s1 = src0[i+1] - src1[i+1]*2 + src2[i+1]
609 const int *src0 = src[-2], *src1 = src[-1], *src2 = src[0], *src3 = src[1], *src4 = src[2]; local
643 const int* src1 = src[k] + i, *src2 = src[-k] + i; local
659 const int* src1 = src[k] + i, *src2 = src[-k] + i; local
675 const int* src1 = src[k] + i, *src2 = src[-k] + i; local
717 const float *src0 = src[-1], *src1 = src[0], *src2 = src[1]; local
751 const float *src0 = src[-2], *src1 = src[-1], *src2 = src[0], *src3 = src[1], *src4 = src[2]; local
772 const float* src1 = src[k] + i, *src2 = src[-k] + i; local
788 const float* src1 = src[k] + i, *src2 = src[-k] + i; local
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman2/
PackagesDiffLogic.java 859 SdkSource src1 = ((PkgCategorySource) cat1).getSource(); local
    [all...]

Completed in 643 milliseconds

1 2