Searched refs:tmp (Results 651 - 675 of 2163) sorted by relevance

<<21222324252627282930>>

/external/mesa3d/src/gallium/auxiliary/translate/
H A Dtranslate_sse.c174 struct x86_reg tmp = p->tmp_EAX; local
178 x86_movzx8(p->func, tmp, src);
179 sse2_movd(p->func, data, tmp);
182 x86_movzx16(p->func, tmp, src);
183 sse2_movd(p->func, data, tmp);
186 x86_movzx8(p->func, tmp, x86_make_disp(src, 2));
187 x86_shl_imm(p->func, tmp, 16);
188 x86_mov16(p->func, tmp, src);
189 sse2_movd(p->func, data, tmp);
196 x86_movzx16(p->func, tmp, x86_make_dis
713 struct x86_reg tmp = p->tmp_EAX; local
858 struct x86_reg tmp = p->tmp_EAX; local
[all...]
/external/e2fsprogs/misc/
H A Dmke2fs.c1281 char *tmp, **cpp; local
1339 tmp = getenv("MKE2FS_SYNC");
1340 if (tmp)
1341 sync_kludge = atoi(tmp);
1355 if ((tmp = getenv("MKE2FS_CONFIG")) != NULL)
1356 config_fn[0] = tmp;
1447 fs_param.s_blocks_per_group = strtoul(optarg, &tmp, 0);
1448 if (*tmp) {
1460 flex_bg_size = strtoul(optarg, &tmp, 0);
1461 if (*tmp) {
[all...]
/external/ltrace/
H A Dltrace-elf.c484 uint32_t tmp; local
485 if (elf_read_u32(data, offset, &tmp) < 0)
487 value = tmp;
866 struct library_symbol *tmp = libsym->next; local
869 libsym = tmp;
1017 struct library_symbol *tmp = malloc(sizeof *tmp); local
1018 if (tmp == NULL
1019 || library_symbol_init(tmp, naddr, full_name, 1,
1021 free(tmp);
1049 struct library_symbol *tmp; local
[all...]
/external/webp/src/dsp/
H A Denc_sse2.c37 } tmp;
38 tmp.r = r;
41 for (n = 0; n < 16; ++n) printf("%.2x ", tmp.i8[n]);
43 for (n = 0; n < 8; ++n) printf("%.4x ", tmp.i16[n]);
45 for (n = 0; n < 4; ++n) printf("%.8x ", tmp.i32[n]);
47 for (n = 0; n < 2; ++n) printf("%.16lx ", tmp.i64[n]);
456 int32_t tmp[16]; local
463 tmp[0 + i * 4] = a0 + a1;
464 tmp[1 + i * 4] = a3 + a2;
465 tmp[
562 int32_t tmp[4]; local
624 int32_t tmp[4]; local
[all...]
/external/jpeg/
H A Djcmaster.c312 int ci, mcublks, tmp; local
333 tmp = (int) (compptr->height_in_blocks % compptr->v_samp_factor);
334 if (tmp == 0) tmp = compptr->v_samp_factor;
335 compptr->last_row_height = tmp;
366 tmp = (int) (compptr->width_in_blocks % compptr->MCU_width);
367 if (tmp == 0) tmp = compptr->MCU_width;
368 compptr->last_col_width = tmp;
369 tmp
[all...]
/external/opencv/cv/src/
H A Dcvoptflowhs.cpp357 float tmp; local
380 tmp = (float)fabs(velocityX[Line2] - VelBufX[i & 1][0]);
381 Eps = MAX( tmp, Eps );
382 tmp = (float)fabs(velocityY[Line2] - VelBufY[i & 1][0]);
383 Eps = MAX( tmp, Eps );
406 tmp = (float)fabs(velocityX[Line2 + j] - VelBufX[i & 1][j]);
407 Eps = MAX( tmp, Eps );
408 tmp = (float)fabs(velocityY[Line2 + j] - VelBufY[i & 1][j]);
409 Eps = MAX( tmp, Eps );
436 tmp
[all...]
/external/pdfium/core/src/fxcodec/libjpeg/
H A Dfpdfapi_jcmaster.c313 int ci, mcublks, tmp; local
334 tmp = (int) (compptr->height_in_blocks % compptr->v_samp_factor);
335 if (tmp == 0) tmp = compptr->v_samp_factor;
336 compptr->last_row_height = tmp;
367 tmp = (int) (compptr->width_in_blocks % compptr->MCU_width);
368 if (tmp == 0) tmp = compptr->MCU_width;
369 compptr->last_col_width = tmp;
370 tmp
[all...]
/external/skia/samplecode/
H A DSampleRegion.cpp171 SkRegion tmp; local
177 tmp.op(r, SkRegion::kUnion_Op);
179 dst->swap(tmp);
269 SkRegion tmp, tmp2(rgn); local
271 tmp = tmp2;
272 tmp.translate(5, -3);
276 SkDEBUGCODE(size_t size = ) tmp.writeToMemory(NULL);
278 SkDEBUGCODE(size_t size2 = ) tmp.writeToMemory(buffer);
285 SkASSERT(tmp3 == tmp);
288 rgn.translate(20, 30, &tmp);
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dblknum.c114 blk64_t tmp; local
115 tmp = ext2fs_blocks_count(super) + blk;
116 ext2fs_blocks_count_set(super, tmp);
144 blk64_t tmp; local
145 tmp = ext2fs_r_blocks_count(super) + blk;
146 ext2fs_r_blocks_count_set(super, tmp);
174 blk64_t tmp; local
175 tmp = ext2fs_free_blocks_count(super) + blk;
176 ext2fs_free_blocks_count_set(super, tmp);
/external/iptables/utils/
H A Dnfnl_osf.c138 char *tmp; local
140 tmp = strchr(ptr, c);
141 if (tmp)
142 *tmp = '\0';
144 while (tmp && tmp + 1 && isspace(*(tmp + 1)))
145 tmp++;
147 return tmp;
/external/jetty/src/java/org/eclipse/jetty/servlets/
H A DCGI.java86 String tmp = getInitParameter("cgibinResourceBase");
87 if (tmp == null)
89 tmp = getInitParameter("resourceBase");
90 if (tmp == null)
91 tmp = getServletContext().getRealPath("/");
95 tmp = getServletContext().getRealPath(tmp);
98 if (tmp == null)
104 File dir = new File(tmp);
/external/libmtp/examples/
H A Dsendtr.c114 LIBMTP_album_t *tmp; local
116 tmp = album;
118 LIBMTP_destroy_album_t(tmp);
300 char tmp[80]; local
302 snprintf(tmp, sizeof(tmp)-1, "%4d0101T0000.0", year);
303 tmp[sizeof(tmp)-1] = '\0';
304 trackmeta->date = strdup(tmp);
/external/valgrind/coregrind/m_aspacemgr/
H A Daspacemgr-common.c331 HChar tmp[64]; // large enough local
333 ML_(am_sprintf)(tmp, "/proc/self/fd/%d", fd);
334 if (ML_(am_readlink)(tmp, buf, nbuf) > 0 && buf[0] == '/')
340 HChar tmp[VKI_MAXPATHLEN+1];
341 if (0 == ML_(am_fcntl)(fd, VKI_F_GETPATH, (UWord)tmp)) {
343 VG_(strncpy)( buf, tmp, nbuf < sizeof(tmp) ? nbuf : sizeof(tmp) );
346 if (tmp[0] == '/') return True;
/external/ceres-solver/examples/
H A Dbal_problem.cc217 std::vector<double> tmp(num_points_);
222 tmp[j] = points[3 * j + i];
224 median(i) = Median(&tmp);
229 tmp[i] = (point - median).lpNorm<1>();
232 const double median_absolute_deviation = Median(&tmp);
/external/clang/include/clang/AST/
H A DDeclFriend.h200 friend_iterator tmp = *this; local
202 return tmp;
221 friend_iterator tmp = *this; local
222 tmp += N;
223 return tmp;
/external/deqp/modules/internal/
H A DditImageCompareTests.cpp45 tcu::TextureLevel tmp; local
46 tcu::ImageIO::loadImage(tmp, archive, path);
48 dst.setStorage(tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), tmp.getWidth(), tmp.getHeight());
49 tcu::copy(dst, tmp);
/external/eigen/test/
H A Dhouseholder.cpp35 Scalar* tmp = &_tmp.coeffRef(0,0); local
44 v1.applyHouseholderOnTheLeft(essential,beta,tmp);
49 v1.applyHouseholderOnTheLeft(essential,beta,tmp);
60 m1.applyHouseholderOnTheLeft(essential,beta,tmp);
72 m3.applyHouseholderOnTheRight(essential,beta,tmp);
/external/elfutils/src/libelf/
H A Delf_getarsym.c260 uint64_t tmp = file_data->u64[cnt]; local
262 tmp = bswap_64 (tmp);
264 arsym[cnt].as_off = tmp;
269 && arsym[cnt].as_off != tmp)
/external/google-breakpad/src/client/linux/minidump_writer/
H A Dlinux_ptrace_dumper.cc135 unsigned long tmp = 55; local
137 static const size_t word_size = sizeof(tmp);
143 if (sys_ptrace(PTRACE_PEEKDATA, child, remote + done, &tmp) == -1) {
144 tmp = 0;
146 my_memcpy(local + done, &tmp, l);
/external/jsilver/src/com/google/clearsilver/jsilver/template/
H A DDefaultRenderingContext.java125 StringBuilder tmp = new StringBuilder();
126 globalFunctionExecutor.escape(currentEscaper, text, tmp);
127 if (!tmp.toString().equals(text)) {
129 .append(text).append("] to [").append(tmp.toString()).append("]").toString());
131 out.append(tmp);
/external/llvm/lib/Support/
H A DCrashRecoveryContext.cpp78 CrashRecoveryContextCleanup *tmp = i; local
79 i = tmp->next;
80 tmp->cleanupFired = true;
81 tmp->recoverResources();
82 delete tmp;
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_mc.c84 struct ureg_dst tmp; local
87 tmp = ureg_DECL_temporary(shader);
92 * tmp.y = fraction(pos.y / 2) >= 0.5 ? 1 : 0
94 ureg_MUL(shader, ureg_writemask(tmp, TGSI_WRITEMASK_Y), pos, ureg_imm1f(shader, 0.5f));
95 ureg_FRC(shader, ureg_writemask(tmp, TGSI_WRITEMASK_Y), ureg_src(tmp));
96 ureg_SGE(shader, ureg_writemask(tmp, TGSI_WRITEMASK_Y), ureg_src(tmp), ureg_imm1f(shader, 0.5f));
98 return tmp;
315 struct ureg_dst tmp; local
[all...]
/external/selinux/libsemanage/tests/
H A Dtest_utilities.c271 semanage_list_t *data, *tmp; local
280 for (tmp = data; tmp; tmp = tmp->next)
/external/skia/src/core/
H A DSkRect.cpp162 SkString tmp; local
163 line.printf( "SkRect::MakeLTRB(%s, /* %f */\n", set_scalar(&tmp, fLeft, asType), fLeft);
164 line.appendf(" %s, /* %f */\n", set_scalar(&tmp, fTop, asType), fTop);
165 line.appendf(" %s, /* %f */\n", set_scalar(&tmp, fRight, asType), fRight);
166 line.appendf(" %s /* %f */);", set_scalar(&tmp, fBottom, asType), fBottom);
/external/srtp/
H A DMakefile136 @test/srtp_driver -v -d "alloc" > tmp
137 @grep freed tmp | wc -l > freed
138 @grep allocated tmp | wc -l > allocated
142 @rm freed allocated tmp
201 rm -rf freed allocated tmp

Completed in 1055 milliseconds

<<21222324252627282930>>