/external/guava/guava-testlib/src/com/google/common/testing/ |
ClusterException.java | 70 ArrayList<Throwable> temp = new ArrayList<Throwable>(); local 71 temp.addAll(exceptions); 72 this.exceptions = Collections.unmodifiableCollection(temp); 79 ArrayList<Throwable> temp = new ArrayList<Throwable>(); local 81 temp.add(exception); 83 return create(temp); 113 Throwable temp = exceptions.iterator().next(); local 114 if (temp instanceof RuntimeException) { 115 return (RuntimeException)temp; 117 return new RuntimeException(temp); [all...] |
/frameworks/av/media/libstagefright/codecs/avc/enc/src/ |
intra_est.cpp | 42 int temp, SBE, offset; local 60 temp = *topL++ - orgY[j]; 61 SBE += ((temp >= 0) ? temp : -temp); 62 temp = *(leftL += picPitch) - *(orgY_2 += orgPitch); 63 SBE += ((temp >= 0) ? temp : -temp); 76 temp = *topL++ - orgY_2[j] 728 uint32 temp, DC; local 2012 int component, SubBlock_indx, temp; local [all...] |
/system/core/libpixelflinger/codeflinger/ |
blending.cpp | 32 component_t& temp, // incomming fragment / output 40 integer_t fragment(temp.reg, temp.h, temp.flags); 41 if (!(temp.flags & CORRUPTIBLE)) { 42 temp.reg = regs.obtain(); 43 temp.flags |= CORRUPTIBLE; 59 build_blendFOneMinusF(temp, factor, fragment, fogColor); 64 component_t& temp, // incomming fragment / output 77 if (!temp.size()) [all...] |
/bionic/libc/upstream-netbsd/libc/stdlib/ |
_rand48.c | 41 unsigned short temp[2]; local 47 temp[0] = (unsigned short) accu; /* lower 16 bits */ 51 temp[1] = (unsigned short) accu; /* middle 16 bits */ 54 xseed[0] = temp[0]; 55 xseed[1] = temp[1];
|
/external/skia/legacy/src/xml/ |
SkXMLParser.cpp | 35 SkString temp; local 38 temp.set(gErrorStrings[fCode - 1]); 39 temp.append(fNoun); 41 SkXMLParser::GetNativeErrorString(fNativeCode, &temp); 42 str->append(temp);
|
/external/skia/src/xml/ |
SkXMLParser.cpp | 35 SkString temp; local 38 temp.set(gErrorStrings[fCode - 1]); 39 temp.append(fNoun); 41 SkXMLParser::GetNativeErrorString(fNativeCode, &temp); 42 str->append(temp);
|
/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
DelayAllPass_Sat_32x16To32.c | 40 LVM_INT32 temp; local 46 MUL32x16INTO32(delay[AllPassOffset], coeff, temp, 15) 47 a = temp; 67 MUL32x16INTO32(c, -coeff, temp, 15) 68 a = temp;
|
FO_2I_D16F32Css_LShx_TRC_WRA_01_Init.c | 44 LVM_INT16 temp; local 48 temp=pCoef->A1; 49 pBiquadState->coefs[0]=temp; 50 temp=pCoef->A0; 51 pBiquadState->coefs[1]=temp; 52 temp=pCoef->B1; 53 pBiquadState->coefs[2]=temp; 55 temp=pCoef->Shift; 56 pBiquadState->Shift = temp;
|
LVC_Core_MixSoft_1St_2i_D16C31_WRA.c | 52 LVM_INT32 Temp; 61 ADD2_SAT_32x32(CurrentL,DeltaL,Temp); /* Q31 + Q31 into Q31*/ 62 CurrentL=Temp; 75 ADD2_SAT_32x32(CurrentR,DeltaR,Temp); /* Q31 + Q31 into Q31*/ 76 CurrentR=Temp; 101 ADD2_SAT_32x32(CurrentL,DeltaL,Temp); /* Q31 + Q31 into Q31*/ 102 CurrentL=Temp; 115 ADD2_SAT_32x32(CurrentR,DeltaR,Temp); /* Q31 + Q31 into Q31*/ 116 CurrentR=Temp;
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/fstream.cons/ |
move.pass.cpp | 23 char temp[L_tmpnam]; local 24 tmpnam(temp); 26 std::fstream fso(temp, std::ios_base::in | std::ios_base::out 37 std::wfstream fso(temp, std::ios_base::in | std::ios_base::out 46 std::remove(temp);
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
motion_comp.cpp | 1525 ULong temp, temp2; local 1559 temp = *(src += lx); local 1677 temp = *(src += lx); local 1722 ULong temp; local 1769 ULong temp; local 1802 ULong temp; local 1869 ULong temp; local [all...] |
/external/qemu/android/avd/ |
info.c | 97 IMAGE_STATE_TEMPORARY, /* copied to temp file (no lock needed) */ 216 char temp[PATH_MAX], *p = temp, *end= p+sizeof temp; local 222 p = bufprint(temp, end, "%s%d", SEARCH_PREFIX, nn+1 ); 226 path = iniFile_getString(configIni, temp, NULL); 230 p = bufprint(temp, end, "%s/%s", sdkRootPath, path); 232 path = ASTRDUP(temp); 265 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp) local 281 char temp[MAX_PATH], *p=temp, *end=p+sizeof(temp); local 301 char temp[MAX_PATH], *p = temp, *end = p + sizeof(temp); local 356 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local 451 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local 555 char temp[MAX_PATH], *p = temp, *end = p + sizeof(temp); local 621 char temp[MAX_PATH], *p = temp, *end = p + sizeof(temp); local 785 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local 888 char temp[PATH_MAX], *p = temp, *end = p + sizeof(temp); local 1077 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local [all...] |
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/ |
lmpar.h | 22 Scalar temp, paru; local 48 temp = wa1[j]; 50 wa1[i] -= r(i,j) * temp; 85 temp = wa1.blueNorm(); 86 parl = fp / delta / temp / temp; 119 temp = fp; 125 if (abs(fp) <= Scalar(0.1) * delta || (parl == 0. && fp <= temp && temp < 0.) || iter == 10) 135 temp = wa1[j] 178 Scalar temp, paru; local [all...] |
/external/libvpx/libvpx/vp8/common/ |
filter.c | 53 int Temp; 59 Temp = ((int)src_ptr[-2 * (int)pixel_step] * vp8_filter[0]) + 68 Temp = Temp >> VP8_FILTER_SHIFT; 70 if (Temp < 0) 71 Temp = 0; 72 else if (Temp > 255) 73 Temp = 255; 75 output_ptr[j] = Temp; 98 int Temp; [all...] |
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
idct_vca.cpp | 450 int32 x0, x1, x2, x4, x5, temp; local 476 temp = ((x0 + x2) >> 14); 477 CLIP_RESULT(temp) 478 word = word | (temp << 8); 479 temp = ((x0 + x1) >> 14); 480 CLIP_RESULT(temp) 481 word = word | (temp << 16); 482 temp = ((x0 + x5) >> 14); 483 CLIP_RESULT(temp) 484 word = word | (temp << 24) 507 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8, temp; local 580 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8, temp; local [all...] |
/device/generic/goldfish/qemu-props/ |
qemu-props.c | 85 char temp[BUFF_SIZE]; local 86 int len = qemud_channel_recv(qemud_fd, temp, sizeof temp - 1); 89 if (len < 0 || len > BUFF_SIZE-1 || temp[0] == '\0') 92 temp[len] = '\0'; /* zero-terminate string */ 94 DD("received: %.*s", len, temp); 97 q = strchr(temp, '='); 104 if (property_set(temp, q) < 0) { 105 DD("could not set property '%s' to '%s'", temp, q);
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/ |
p6.cpp | 7 template<class A> void temp(A); 10 apply(0, &temp); 11 apply(0, &temp<>); 14 apply(0, &temp<int>); 17 apply(0, &temp<long>); // expected-error {{no matching function for call to 'apply'}} 55 template<class T> void temp(T); 58 invoke(&temp); // expected-error {{no matching function for call to 'invoke'}} 59 invoke(&temp<>); // expected-error {{no matching function for call to 'invoke'}} 62 invoke(&temp<int>);
|
/external/emma/core/java14/com/vladium/util/ |
IJREVersion.java | 60 boolean temp = false; 66 temp = true; 70 _JRE_1_3_PLUS = temp; 72 if (temp) 74 temp = false; 78 temp = true; 82 _JRE_1_4_PLUS = temp; 84 temp = false; 86 _JRE_SUN_SIGNAL_COMPATIBLE = temp;
|
/external/icu4c/test/intltest/ |
locnmtst.cpp | 89 UnicodeString temp; local 91 ldn->localeDisplayName("de_DE", temp); 93 test_assert_equal("Deutsch (Deutschland)", temp); 97 UnicodeString temp; local 99 ldn->localeDisplayName("en_GB", temp); 101 test_assert_equal("British English", temp); 105 UnicodeString temp; local 110 ldn->localeDisplayName(locname, temp); 112 test_assert_equal(target, temp); 116 UnicodeString temp; local 126 UnicodeString temp; local 136 UnicodeString temp; local 343 UnicodeString temp; local [all...] |
/external/qemu/distrib/sdl-1.2.15/docs/html/ |
sdlpixelformat.html | 401 Uint32 temp, pixel; 412 temp=pixel&fmt->Rmask; /* Isolate red component */ 413 temp=temp>>fmt->Rshift;/* Shift it down to 8-bit */ 414 temp=temp<<fmt->Rloss; /* Expand to a full 8-bit number */ 415 red=(Uint8)temp; 418 temp=pixel&fmt->Gmask; /* Isolate green component */ 419 temp=temp>>fmt->Gshift;/* Shift it down to 8-bit * [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/ |
armVCM4P10_InterpolateLuma_HalfVer4x4_unsafe_s.s | 30 Temp RN 12 74 ADD Temp, pSrc, srcStep, LSL #2 77 VLD1 dSrc5, [Temp], srcStep 83 VLD1 dSrc6, [Temp], srcStep ;// TeRi 86 VLD1 dSrc7, [Temp], srcStep ;// TeRi 89 VLD1 dSrc8, [Temp], srcStep ;// TeRi 94 ; VLD1 dSrc6, [Temp], srcStep 102 ; VLD1 dSrc7, [Temp], srcStep 110 ; VLD1 dSrc8, [Temp], srcStep ;// [i0 i1 i2 i3 .. ]
|
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1GeneralizedTime.java | 89 String temp = sdf.format(out.content); local 93 while (((nullId = temp.lastIndexOf('0', currLength = temp.length() - 1)) != -1) 95 temp = temp.substring(0, nullId); 98 if (temp.charAt(currLength) == '.') { 99 temp = temp.substring(0, currLength); 102 out.content = (temp + "Z").getBytes(Charsets.UTF_8);
|
/packages/apps/Camera/jni/feature_stab/db_vlvm/ |
db_utilities_geometry.h | 55 const double *temp; local 60 temp= *X++; 61 cx+=temp[0]; 62 cy+=temp[1]; 101 const double *temp; local 106 temp= *X++; 107 cx+=temp[0]; 108 cy+=temp[1]; 109 cz+=temp[2];
|
db_utilities_indexing.cpp | 38 double temp; local 51 temp= *(s_point++); 52 if(temp<pivot) *(d_bottom++)=temp; 53 else if(temp>pivot) *(d_top--)=temp; 59 double db_LeanQuickSelect(const double *s,long nr_elements,long pos,double *temp) 71 tempA=temp; 72 tempB=temp+nr_elements;
|
/packages/apps/Gallery2/jni_mosaic/feature_stab/db_vlvm/ |
db_utilities_geometry.h | 55 const double *temp; local 60 temp= *X++; 61 cx+=temp[0]; 62 cy+=temp[1]; 101 const double *temp; local 106 temp= *X++; 107 cx+=temp[0]; 108 cy+=temp[1]; 109 cz+=temp[2];
|