HomeSort by relevance Sort by last modified time
    Searched refs:tmp (Results 301 - 325 of 5176) sorted by null

<<11121314151617181920>>

  /external/skia/tests/
UtilsTest.cpp 32 sk_sp<RefClass> tmp(&obj);
33 REPORTER_ASSERT(reporter, &obj == tmp.get());
36 REPORTER_ASSERT(reporter, &obj == tmp.release());
38 REPORTER_ASSERT(reporter, nullptr == tmp.release());
39 REPORTER_ASSERT(reporter, nullptr == tmp.get());
56 SkAutoSTArray<2, sk_sp<RefClass> > tmp; local
57 REPORTER_ASSERT(reporter, 0 == tmp.count());
59 tmp.reset(0); // test out reset(0) when already at 0
60 tmp.reset(4); // this should force a new allocation
61 REPORTER_ASSERT(reporter, 4 == tmp.count())
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
ANativeWindowTest.java 138 float[] tmp = new float[16]; local
147 matrixMultiply(computedTransform, computedTransform, MIRROR_HORIZONTAL_MATRIX, tmp);
150 matrixMultiply(computedTransform, computedTransform, MIRROR_VERTICAL_MATRIX, tmp);
153 matrixMultiply(computedTransform, computedTransform, ROTATE_90_MATRIX, tmp);
196 // allowing for result *= b. Another 4x4 matrix tmp must be provided as scratch space.
197 private void matrixMultiply(float[] result, float[] a, float[] b, float[] tmp) {
198 tmp[ 0] = a[ 0]*b[ 0] + a[ 4]*b[ 1] + a[ 8]*b[ 2] + a[12]*b[ 3];
199 tmp[ 1] = a[ 1]*b[ 0] + a[ 5]*b[ 1] + a[ 9]*b[ 2] + a[13]*b[ 3];
200 tmp[ 2] = a[ 2]*b[ 0] + a[ 6]*b[ 1] + a[10]*b[ 2] + a[14]*b[ 3];
201 tmp[ 3] = a[ 3]*b[ 0] + a[ 7]*b[ 1] + a[11]*b[ 2] + a[15]*b[ 3]
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ColorSpaceMatrix.java 84 float[] tmp = c.mMatrix; local
86 tmp[5] = rc;
87 tmp[6] = rs;
88 tmp[9] = -rs;
89 tmp[10] = rc;
91 multiply(tmp);
97 float[] tmp = c.mMatrix; local
99 tmp[0] = rc;
100 tmp[2] = -rs;
101 tmp[8] = rs
110 float[] tmp = c.mMatrix; local
122 float[] tmp = c.mMatrix; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_twoside.c 59 struct vertex_header *tmp = dup_vert( &twoside->stage, v, idx ); local
62 COPY_4FV(tmp->data[twoside->attrib_front0],
63 tmp->data[twoside->attrib_back0]);
66 COPY_4FV(tmp->data[twoside->attrib_front1],
67 tmp->data[twoside->attrib_back1]);
70 return tmp;
83 struct prim_header tmp; local
85 tmp.det = header->det;
86 tmp.flags = header->flags;
87 tmp.pad = header->pad
    [all...]
  /external/webrtc/webrtc/common_audio/signal_processing/
splitting_filter.c 133 int32_t tmp; local
159 tmp = (filter1[i] + filter2[i] + 1024) >> 11;
160 low_band[i] = WebRtcSpl_SatW32ToW16(tmp);
162 tmp = (filter1[i] - filter2[i] + 1024) >> 11;
163 high_band[i] = WebRtcSpl_SatW32ToW16(tmp);
171 int32_t tmp; local
184 tmp = (int32_t)low_band[i] + (int32_t)high_band[i];
185 half_in1[i] = WEBRTC_SPL_LSHIFT_W32(tmp, 10);
186 tmp = (int32_t)low_band[i] - (int32_t)high_band[i];
187 half_in2[i] = WEBRTC_SPL_LSHIFT_W32(tmp, 10)
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_slice_data.c 93 u32 tmp; local
146 tmp = h264bsdDecodeExpGolombUnsigned(pStrmData, &skipRun);
147 if (tmp != HANTRO_OK)
148 return(tmp);
174 tmp = h264bsdDecodeMacroblockLayer(pStrmData, mbLayer,
177 if (tmp != HANTRO_OK)
180 return(tmp);
184 tmp = h264bsdDecodeMacroblock(pStorage->mb + currMbAddr, mbLayer,
187 if (tmp != HANTRO_OK)
190 return(tmp);
302 u32 tmp, i; local
    [all...]
  /system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/util/include/linux/
bitops.h 98 unsigned long tmp; local
101 if ((tmp = *(p++)))
109 tmp = (*p) & (~0UL >> (BITS_PER_LONG - size));
110 if (tmp == 0UL) /* Are any bits set? */
113 return result + __ffs(tmp);
124 unsigned long tmp; local
131 tmp = *(p++);
132 tmp &= (~0UL << offset);
135 if (tmp)
141 if ((tmp = *(p++))
    [all...]
  /external/bison/lib/
pipe2.c 45 int tmp[2]; local
46 tmp[0] = fd[0];
47 tmp[1] = fd[1];
81 fd[0] = tmp[0];
82 fd[1] = tmp[1];
162 fd[0] = tmp[0];
163 fd[1] = tmp[1];
  /external/libavc/encoder/
ih264e_half_pel.c 188 WORD32 tmp; local
196 tmp = ih264_g_six_tap[0] * (pu1_src[col - 2 * src_strd] + pu1_src[col + 3 * src_strd]) +
200 pi4_pred_temp[col] = tmp;
211 tmp = (pi4_pred[col - 2] + pi4_pred[col + 3]) +
215 tmp = (tmp + 512) >> 10;
217 pu1_dst2[col] = CLIP_U8(tmp);
  /external/skia/src/core/
SkQuadClipper.cpp 73 SkPoint tmp[5]; // for SkChopQuadAt local
79 SkChopQuadAt(dst, tmp, t);
80 dst[0] = tmp[2];
81 dst[1] = tmp[3];
96 SkChopQuadAt(dst, tmp, t);
97 dst[1] = tmp[1];
98 dst[2] = tmp[2];
  /hardware/qcom/display/msm8084/libmemtrack/
kgsl.c 51 char tmp[128]; local
64 snprintf(tmp, sizeof(tmp), "/proc/%d/cmdline", pid);
65 fp = fopen(tmp, "r");
77 snprintf(tmp, sizeof(tmp), "/d/kgsl/proc/%d/mem", pid);
78 fp = fopen(tmp, "r");
  /hardware/qcom/display/msm8226/libmemtrack/
kgsl.c 51 char tmp[128]; local
64 snprintf(tmp, sizeof(tmp), "/proc/%d/cmdline", pid);
65 fp = fopen(tmp, "r");
77 snprintf(tmp, sizeof(tmp), "/d/kgsl/proc/%d/mem", pid);
78 fp = fopen(tmp, "r");
  /hardware/qcom/display/msm8909/libmemtrack/
kgsl.c 50 char tmp[128]; local
62 snprintf(tmp, sizeof(tmp), "/proc/%d/cmdline", pid);
63 fp = fopen(tmp, "r");
75 snprintf(tmp, sizeof(tmp), "/d/kgsl/proc/%d/mem", pid);
76 fp = fopen(tmp, "r");
  /hardware/qcom/display/msm8994/libmemtrack/
kgsl.c 51 char tmp[128]; local
64 snprintf(tmp, sizeof(tmp), "/proc/%d/cmdline", pid);
65 fp = fopen(tmp, "r");
77 snprintf(tmp, sizeof(tmp), "/d/kgsl/proc/%d/mem", pid);
78 fp = fopen(tmp, "r");
  /hardware/qcom/display/msm8996/libmemtrack/
kgsl.c 50 char tmp[128]; local
62 snprintf(tmp, sizeof(tmp), "/proc/%d/cmdline", pid);
63 fp = fopen(tmp, "r");
75 snprintf(tmp, sizeof(tmp), "/d/kgsl/proc/%d/mem", pid);
76 fp = fopen(tmp, "r");
  /external/e2fsprogs/lib/ext2fs/
digest_encode.c 131 unsigned char tmp[1024], tmp2[1024]; local
134 memset(tmp, 0, sizeof(tmp));
135 ext2fs_digest_encode(argv[2], strlen(argv[2]), tmp);
136 puts(tmp);
140 memset(tmp, 0, sizeof(tmp));
141 ret = ext2fs_digest_decode(argv[2], strlen(argv[2]), tmp);
142 puts(tmp);
147 memset(tmp, 0, sizeof(tmp))
    [all...]
  /frameworks/av/soundtrigger/
SoundTrigger.cpp 247 int tmp[10]; local
250 tmp, tmp+1, tmp+2, tmp+3, tmp+4, tmp+5, tmp+6, tmp+7, tmp+8, tmp+9) < 10)
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/src/
ios.cpp 153 pair<long*, size_t> tmp = _Stl_expand_array(_M_iwords, _M_num_iwords, index); local
154 if (tmp.first) { // The allocation, if any, succeeded.
155 _M_iwords = tmp.first;
156 _M_num_iwords = tmp.second;
170 pair<void**, size_t> tmp = _Stl_expand_array(_M_pwords, _M_num_pwords, index); local
171 if (tmp.first) { // The allocation, if any, succeeded.
172 _M_pwords = tmp.first;
173 _M_num_pwords = tmp.second;
184 pair<pair<event_callback, int>*, size_t> tmp local
186 if (tmp.first)
243 pair<event_callback, int>* tmp = _Stl_copy_array(x._M_callbacks, x._M_callback_index); local
256 long* tmp = _Stl_copy_array(x._M_iwords, x._M_num_iwords); local
269 void** tmp = _Stl_copy_array(x._M_pwords, x._M_num_pwords); local
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/src/
ios.cpp 153 pair<long*, size_t> tmp = _Stl_expand_array(_M_iwords, _M_num_iwords, index); local
154 if (tmp.first) { // The allocation, if any, succeeded.
155 _M_iwords = tmp.first;
156 _M_num_iwords = tmp.second;
170 pair<void**, size_t> tmp = _Stl_expand_array(_M_pwords, _M_num_pwords, index); local
171 if (tmp.first) { // The allocation, if any, succeeded.
172 _M_pwords = tmp.first;
173 _M_num_pwords = tmp.second;
184 pair<pair<event_callback, int>*, size_t> tmp local
186 if (tmp.first)
243 pair<event_callback, int>* tmp = _Stl_copy_array(x._M_callbacks, x._M_callback_index); local
256 long* tmp = _Stl_copy_array(x._M_iwords, x._M_num_iwords); local
269 void** tmp = _Stl_copy_array(x._M_pwords, x._M_num_pwords); local
    [all...]
  /external/autotest/client/site_tests/graphics_GLAPICheck/src/
gles_APICheck.cc 120 void* tmp; local
121 rt &= LoadDLFunction(&tmp, "eglGetDisplay", *handle_egl);
122 FP_eglGetDisplay = reinterpret_cast<FT_eglGetDisplay>(tmp);
123 rt &= LoadDLFunction(&tmp, "eglInitialize", *handle_egl);
124 FP_eglInitialize = reinterpret_cast<FT_eglInitialize>(tmp);
125 rt &= LoadDLFunction(&tmp, "eglGetConfigs", *handle_egl);
126 FP_eglGetConfigs = reinterpret_cast<FT_eglGetConfigs>(tmp);
127 rt &= LoadDLFunction(&tmp, "eglChooseConfig", *handle_egl);
128 FP_eglChooseConfig = reinterpret_cast<FT_eglChooseConfig>(tmp);
129 rt &= LoadDLFunction(&tmp, "eglCreateContext", *handle_egl)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
adler32.c 31 unsigned long tmp = a >> 16; \
33 a += (tmp << 4) - tmp; \
47 z_off64_t tmp = a >> 32; \
49 a += (tmp << 8) - (tmp << 5) + tmp; \
50 tmp = a >> 16; \
52 a += (tmp << 4) - tmp; \
    [all...]
  /external/pdfium/third_party/zlib_v128/
adler32.c 31 unsigned long tmp = a >> 16; \
33 a += (tmp << 4) - tmp; \
47 z_off64_t tmp = a >> 32; \
49 a += (tmp << 8) - (tmp << 5) + tmp; \
50 tmp = a >> 16; \
52 a += (tmp << 4) - tmp; \
    [all...]
  /external/syslinux/gpxe/src/core/
string.c 41 char *tmp = dest; local
45 return tmp;
62 char *tmp = dest; local
67 return tmp;
79 char *tmp = dest; local
86 return tmp;
233 char *tmp = (char *) dest, *s = (char *) src; local
236 *tmp++ = *s++;
253 char *tmp, *s; local
256 tmp = (char *) dest
    [all...]
  /external/zlib/src/
adler32.c 31 unsigned long tmp = a >> 16; \
33 a += (tmp << 4) - tmp; \
47 z_off64_t tmp = a >> 32; \
49 a += (tmp << 8) - (tmp << 5) + tmp; \
50 tmp = a >> 16; \
52 a += (tmp << 4) - tmp; \
    [all...]
  /device/common/
generate-packages.sh 39 rm -rf tmp
40 FILEDIR=tmp/vendor/$COMPANY/$DEVICE/proprietary
42 FILEDIR_ROOT=tmp/vendor/$MANUFACTURER/$ROOTDEVICE
46 FILEDIR_ROOT=tmp/vendor/${MANUFACTURER}_devices/$ROOTDEVICE ;;
130 cp -R $COMPANY/staging/* tmp/vendor/$COMPANY/$DEVICE || echo \ \ \ \ Error copying makefiles
137 FILEDIR_ROOT_SHARE=tmp/vendor/${MANUFACTURER}_devices/marlin
149 cat PROLOGUE > tmp/$SCRIPT || echo \ \ \ \ Error generating script
150 cat $COMPANY/COPYRIGHT >> tmp/$SCRIPT || echo \ \ \ \ Error generating script
151 cat PART1 >> tmp/$SCRIPT || echo \ \ \ \ Error generating script
152 cat $COMPANY/LICENSE >> tmp/$SCRIPT || echo \ \ \ \ Error generating scrip
    [all...]

Completed in 623 milliseconds

<<11121314151617181920>>