HomeSort by relevance Sort by last modified time
    Searched full:temp (Results 101 - 125 of 5497) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/misc/windows/sdl2/test/
testsprite2.c 56 SDL_Surface *temp; local
59 temp = SDL_LoadBMP(file);
60 if (temp == NULL) {
64 sprite_w = temp->w;
65 sprite_h = temp->h;
68 if (temp->format->palette) {
69 SDL_SetColorKey(temp, 1, *(Uint8 *) temp->pixels);
71 switch (temp->format->BitsPerPixel) {
73 SDL_SetColorKey(temp, 1, (*(Uint16 *) temp->pixels) & 0x00007FFF)
108 SDL_Rect viewport, temp; local
    [all...]
  /system/bt/embdrv/sbc/encoder/srce/
sbc_dct.c 87 register SINT32 x0, x1, x2, x3, x4, x5, x6, x7,temp; local
102 temp = x0 ;
104 SBC_IDCT_MULT(SBC_COS_PI_SUR_4, ( temp - x4 ), x4); /*x4 = ( temp - x4 ) * cos(1*pi/4) ; */
112 temp = x2 ;
114 SBC_IDCT_MULT(SBC_COS_3PI_SUR_8,( temp - x6 ), x6); /*x6 = ( temp - x6 ) * cos(3*pi/8) ;*/
131 temp = x1 ;
133 x5 = temp - x5 ;
141 temp = x3
209 SINT32 temp,x2; local
    [all...]
  /external/mesa3d/src/gallium/tests/trivial/
compute.c 445 "DCL TEMP[0], LOCAL\n"
446 "DCL TEMP[1], LOCAL\n"
452 " UMUL TEMP[0], SV[0], SV[1]\n"
453 " UADD TEMP[0], TEMP[0], SV[3]\n"
454 " UMUL TEMP[1], SV[1], SV[2]\n"
455 " UMUL TEMP[0].w, TEMP[0], TEMP[1].zzzz\n"
456 " UMUL TEMP[0].zw, TEMP[0], TEMP[1].yyyy\n
    [all...]
  /external/opencv3/modules/core/misc/java/src/java/
core+RotatedRect.java 87 long temp; local
88 temp = Double.doubleToLongBits(center.x);
89 result = prime * result + (int) (temp ^ (temp >>> 32));
90 temp = Double.doubleToLongBits(center.y);
91 result = prime * result + (int) (temp ^ (temp >>> 32));
92 temp = Double.doubleToLongBits(size.width);
93 result = prime * result + (int) (temp ^ (temp >>> 32))
    [all...]
core+TermCriteria.java 70 long temp; local
71 temp = Double.doubleToLongBits(type);
72 result = prime * result + (int) (temp ^ (temp >>> 32));
73 temp = Double.doubleToLongBits(maxCount);
74 result = prime * result + (int) (temp ^ (temp >>> 32));
75 temp = Double.doubleToLongBits(epsilon);
76 result = prime * result + (int) (temp ^ (temp >>> 32))
    [all...]
  /external/srtp/crypto/hash/
sha1.c 106 uint32_t A, B, C, D, E, TEMP;
134 TEMP = W[13] ^ W[8] ^ W[2] ^ W[0]; W[16] = S1(TEMP);
135 TEMP = W[14] ^ W[9] ^ W[3] ^ W[1]; W[17] = S1(TEMP);
136 TEMP = W[15] ^ W[10] ^ W[4] ^ W[2]; W[18] = S1(TEMP);
137 TEMP = W[16] ^ W[11] ^ W[5] ^ W[3]; W[19] = S1(TEMP);
138 TEMP = W[17] ^ W[12] ^ W[6] ^ W[4]; W[20] = S1(TEMP)
    [all...]
  /external/toybox/toys/posix/
rmdir.c 24 char *temp; local
36 if (!(temp = strrchr(name, '/'))) return;
37 *temp = 0;
38 } while (!temp[1]);
  /external/zlib/src/contrib/iostream2/
zstream_test.cpp 9 ozstream out("temp.gz");
13 izstream in("temp.gz"); // read it back
19 out.open("temp.gz"); // try ascii output; zcat temp.gz to see the results
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
From2iToMono_16.c 33 LVM_INT32 Temp;
36 Temp = (LVM_INT32)*src;
39 Temp += (LVM_INT32)*src;
42 *dst = (LVM_INT16)(Temp >>1);
From2iToMono_32.c 33 LVM_INT32 Temp;
37 Temp = (*src>>1);
40 Temp +=(*src>>1);
43 *dst = Temp;
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_highbd_block_error_intrin_sse2.c 20 uint32_t temp[4]; local
53 _mm_storeu_si128((__m128i*)temp, error_sse2);
54 error = error + temp[0] + temp[1] + temp[2] + temp[3];
55 _mm_storeu_si128((__m128i*)temp, sqcoeff_sse2);
56 sqcoeff += temp[0] + temp[1] + temp[2] + temp[3]
    [all...]
  /external/vulkan-validation-layers/windowsRuntimeInstaller/
CreateInstallerRT.sh 6 $TEMP/tempinstaller.exe
7 mv $TEMP/UninstallVulkanRT.exe .
  /external/selinux/libselinux/src/
selinuxswig_ruby.i 17 %typemap(in,numinputs=0) security_id_t *(security_id_t temp) {
18 $1 = &temp;
21 %typemap(in,noblock=1,numinputs=0) char ** (char * temp = 0) {
22 $1 = &temp;
32 %typemap(in,noblock=1,numinputs=0) char ** (char * temp = 0) {
33 $1 = &temp;
  /external/selinux/libsemanage/tests/
test_utilities.c 133 char *temp; local
139 temp = semanage_split_on_space(str);
140 if (strncmp(temp, "bar", 3)) {
143 temp = semanage_split_on_space(temp);
144 if (strncmp(temp, "baz", 3)) {
147 temp = semanage_split_on_space(temp);
148 if (strcmp(temp, "")) {
158 char *temp; local
179 char *temp = NULL; local
    [all...]
  /external/eigen/blas/f2c/
ctbmv.c 28 complex temp; local
248 temp.r = x[i__2].r, temp.i = x[i__2].i;
257 q__2.r = temp.r * a[i__5].r - temp.i * a[i__5].i,
258 q__2.i = temp.r * a[i__5].i + temp.i * a[
284 temp.r = x[i__4].r, temp.i = x[i__4].i;
294 q__2.r = temp.r * a[i__5].r - temp.i * a[i__5].i,
    [all...]
ztbmv.c 28 doublecomplex temp; local
248 temp.r = x[i__2].r, temp.i = x[i__2].i;
257 z__2.r = temp.r * a[i__5].r - temp.i * a[i__5].i,
258 z__2.i = temp.r * a[i__5].i + temp.i * a[
284 temp.r = x[i__4].r, temp.i = x[i__4].i;
294 z__2.r = temp.r * a[i__5].r - temp.i * a[i__5].i,
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
atomicops_internals_arm64_gcc.h 56 int32_t temp; local
63 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
64 "cbnz %w[temp], 0b \n\t" // Retry if it did not work.
67 [temp]"=&r" (temp),
80 int32_t temp; local
85 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
86 "cbnz %w[temp], 0b \n\t" // Retry if it did not work.
88 [temp]"=&r" (temp),
100 int32_t temp; local
192 int32_t temp; local
216 int32_t temp; local
236 int32_t temp; local
    [all...]
  /external/v8/src/base/
atomicops_internals_arm64_gcc.h 29 int32_t temp; local
36 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
37 "cbnz %w[temp], 0b \n\t" // Retry if it did not work.
40 [temp]"=&r" (temp),
53 int32_t temp; local
58 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
59 "cbnz %w[temp], 0b \n\t" // Retry if it did not work.
61 [temp]"=&r" (temp),
73 int32_t temp; local
179 int32_t temp; local
203 int32_t temp; local
223 int32_t temp; local
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
atomicops_internals_arm64_gcc.h 56 int32_t temp; local
63 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
64 "cbnz %w[temp], 0b \n\t" // Retry if it did not work.
67 [temp]"=&r" (temp),
80 int32_t temp; local
85 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
86 "cbnz %w[temp], 0b \n\t" // Retry if it did not work.
88 [temp]"=&r" (temp),
100 int32_t temp; local
192 int32_t temp; local
216 int32_t temp; local
236 int32_t temp; local
    [all...]
  /external/opencv3/modules/cudabgsegm/perf/
perf_bgsegm.cpp 90 cv::Mat temp; local
92 cv::cvtColor(frame, temp, cv::COLOR_BGR2GRAY);
94 cv::cvtColor(frame, temp, cv::COLOR_BGR2BGRA);
95 cv::swap(temp, frame);
117 cv::Mat temp; local
119 cv::cvtColor(frame, temp, cv::COLOR_BGR2GRAY);
121 cv::cvtColor(frame, temp, cv::COLOR_BGR2BGRA);
122 cv::swap(temp, frame);
144 cv::Mat temp; local
146 cv::cvtColor(frame, temp, cv::COLOR_BGR2GRAY)
193 cv::Mat temp; local
221 cv::Mat temp; local
248 cv::Mat temp; local
282 cv::Mat temp; local
307 cv::Mat temp; local
355 cv::Mat temp; local
386 cv::Mat temp; local
    [all...]
  /external/pdfium/xfa/src/fxbarcode/oned/
BC_OnedUPCAReader.cpp 48 CFX_ByteString temp = MaybeReturnResult(bytestring, e); local
50 return temp;
60 CFX_ByteString temp = MaybeReturnResult(bytestring, e); local
62 return temp;
67 CFX_ByteString temp = MaybeReturnResult(bytestring, e); local
69 return temp;
76 CFX_ByteString temp = MaybeReturnResult(bytestring, e); local
78 return temp;
84 int32_t temp = m_ean13Reader->DecodeMiddle(row, startRange, resultString, e); local
86 return temp;
    [all...]
  /cts/apps/CtsVerifier/include/colorchecker/
vec3.h 37 Vec3<T> temp(mRed + param.r(), mGreen + param.g(), mBlue + param.b());
38 return temp;
42 Vec3<T> temp(mRed - param.r(), mGreen - param.g(), mBlue - param.b());
43 return temp;
47 Vec3<T> temp(mRed * param, mGreen * param, mBlue * param);
48 return temp;
53 Vec3<float> temp(mRed * static_cast<U>(param.r()),
56 return temp;
61 Vec3<float> temp; local
63 temp.set(static_cast<float>(mRed) / static_cast<float>(param)
71 Vec3<float> temp; local
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_GetLocal.java 40 File temp = cache.get(url); local
41 if (temp == null) {
43 temp = File.createTempFile("hyts_local", ".tmp", null);
44 temp.deleteOnExit();
45 FileOutputStream out = new FileOutputStream(temp);
53 cache.put(url, temp);
55 return temp;
60 File temp = cache.get(url); local
61 if (temp == null) {
63 temp = File.createTempFile("hyts_local", ".tmp", null)
    [all...]
  /external/clang/test/CodeGen/
atomic-arm64.c 25 // CHECK: [[TEMP:%.*]] = alloca i8, align 1
26 // CHECK-NEXT: store i8 1, i8* [[TEMP]]
27 // CHECK-NEXT: [[T0:%.*]] = load i8, i8* [[TEMP]], align 1
34 // CHECK: [[TEMP:%.*]] = alloca float, align 4
35 // CHECK-NEXT: store float 3.000000e+00, float* [[TEMP]]
36 // CHECK-NEXT: [[T0:%.*]] = bitcast float* [[TEMP]] to i32*
44 // CHECK: [[TEMP:%.*]] = alloca i8*, align 8
45 // CHECK-NEXT: store i8* @a_bool, i8** [[TEMP]]
46 // CHECK-NEXT: [[T0:%.*]] = bitcast i8** [[TEMP]] to i64*
55 // CHECK-NEXT: [[TEMP:%.*]] = alloca [[PAIR_T]], align
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_GetLocal.java 40 File temp = cache.get(url); local
41 if (temp == null) {
43 temp = File.createTempFile("hyts_local", ".tmp", null);
44 temp.deleteOnExit();
45 FileOutputStream out = new FileOutputStream(temp);
53 cache.put(url, temp);
55 return temp;
60 File temp = cache.get(url); local
61 if (temp == null) {
63 temp = File.createTempFile("hyts_local", ".tmp", null)
    [all...]

Completed in 2528 milliseconds

1 2 3 45 6 7 8 91011>>