Home
last modified time | relevance | path

Searched refs:_tmp (Results 1 – 25 of 26) sorted by relevance

12

/external/adhd/cras/src/common/
Dutlist.h72 __typeof(head1) _tmp; \
74 _tmp = head1; \
75 while (_tmp->next) \
76 _tmp = _tmp->next; \
77 _tmp->next = (head2); \
84 __typeof(head) _tmp; \
87 _tmp = head; \
88 while (_tmp->next) \
89 _tmp = _tmp->next; \
90 _tmp->next = (add); \
[all …]
/external/eigen/bench/btl/data/
Dsmooth_all.sh11 ./smooth ${ORIG_DIR}/${BASE} 4 ${SMOOTH_DIR}/${BASE}_tmp
12 ./regularize ${SMOOTH_DIR}/${BASE}_tmp 2500 15000 ${SMOOTH_DIR}/${BASE}
13 rm -f ${SMOOTH_DIR}/${BASE}_tmp
22 ./smooth ${ORIG_DIR}/${BASE} 4 ${SMOOTH_DIR}/${BASE}_tmp
23 ./regularize ${SMOOTH_DIR}/${BASE}_tmp 50 180 ${SMOOTH_DIR}/${BASE}
24 rm -f ${SMOOTH_DIR}/${BASE}_tmp
/external/u-boot/arch/powerpc/include/asm/
Dposix_types.h60 unsigned long _tmp = fd / __NFDBITS; in __FD_SET() local
62 fdsetp->fds_bits[_tmp] |= (1UL<<_rem); in __FD_SET()
68 unsigned long _tmp = fd / __NFDBITS; in __FD_CLR() local
70 fdsetp->fds_bits[_tmp] &= ~(1UL<<_rem); in __FD_CLR()
76 unsigned long _tmp = fd / __NFDBITS; in __FD_ISSET() local
78 return (p->fds_bits[_tmp] & (1UL<<_rem)) != 0; in __FD_ISSET()
/external/u-boot/arch/m68k/include/asm/
Dposix_types.h60 unsigned long _tmp = fd / __NFDBITS; in __FD_SET() local
62 fdsetp->fds_bits[_tmp] |= (1UL<<_rem); in __FD_SET()
68 unsigned long _tmp = fd / __NFDBITS; in __FD_CLR() local
70 fdsetp->fds_bits[_tmp] &= ~(1UL<<_rem); in __FD_CLR()
76 unsigned long _tmp = fd / __NFDBITS; in __FD_ISSET() local
78 return (p->fds_bits[_tmp] & (1UL<<_rem)) != 0; in __FD_ISSET()
/external/webp/src/dsp/
Dneon.h89 uint8_t _tmp[8]; \
90 vst1_u8(_tmp, (REG)); \
91 for (i = 0; i < 8; ++i) printf("%.2x ", _tmp[i]); \
93 uint16_t _tmp[4]; \
94 vst1_u16(_tmp, (REG)); \
95 for (i = 0; i < 4; ++i) printf("%.4x ", _tmp[i]); \
/external/toolchain-utils/dejagnu/
Dgdb_dejagnu.py115 self._tmp = self._tmp_abs[len(self._chromeos_chroot):]
116 self._tmp_testing_rsa = path.join(self._tmp, 'testing_rsa')
140 '__tmp_dir__': self._tmp
159 '__tmp_dir__': self._tmp
257 path.join(self._tmp, 'site.exp')))
Drun_dejagnu.py141 self._tmp = self._tmp_abs[len(self._chromeos_chroot):]
142 self._tmp_testing_rsa = path.join(self._tmp, 'testing_rsa')
156 .format(path.join(self._tmp, 'site.exp'), self._gcc_build_dir,
218 '__tmp_dir__': self._tmp
325 (self._gcc_build_dir, path.join(self._tmp, 'site.exp'),
/external/mesa3d/src/mesa/main/
Dmacros.h406 const GLfloat *_tmp = (SRC); \
407 (DST)[0] = _tmp[0]; \
408 (DST)[1] = _tmp[1]; \
409 (DST)[2] = _tmp[2]; \
527 const GLfloat *_tmp = (SRC); \
528 (DST)[0] = _tmp[0]; \
529 (DST)[1] = _tmp[1]; \
/external/aac/libFDK/src/
Dmdct.cpp522 FIXP_DBL _tmp[1024 + ALIGNMENT_DEFAULT / sizeof(FIXP_DBL)]; in imlt_block() local
523 FIXP_DBL *tmp = (FIXP_DBL *)ALIGN_PTR(_tmp); in imlt_block()
524 C_ALLOC_ALIGNED_REGISTER(tmp, sizeof(_tmp)); in imlt_block()
530 FIXP_DBL _tmp[1024 + ALIGNMENT_DEFAULT / sizeof(FIXP_DBL)]; in imlt_block() local
531 FIXP_DBL *tmp = (FIXP_DBL *)ALIGN_PTR(_tmp); in imlt_block()
532 C_ALLOC_ALIGNED_REGISTER(tmp, sizeof(_tmp)); in imlt_block()
/external/u-boot/include/linux/
Dkernel.h62 ({ unsigned long long _tmp = (ll); do_div(_tmp, d); _tmp; })
/external/swiftshader/third_party/llvm-7.0/llvm/test/Analysis/GlobalsModRef/
Dpr35899-dbg-value.ll18 %_tmp = load i8, i8* @g, align 1
19 call void @gaz(i8 %_tmp)
/external/mesa3d/src/intel/vulkan/
Danv_nir_apply_pipeline_layout.c364 BITSET_WORD b, _tmp; in anv_nir_apply_pipeline_layout() local
365 BITSET_FOREACH_SET(b, _tmp, state.set[set].used, in anv_nir_apply_pipeline_layout()
386 BITSET_WORD b, _tmp; in anv_nir_apply_pipeline_layout() local
387 BITSET_FOREACH_SET(b, _tmp, state.set[set].used, in anv_nir_apply_pipeline_layout()
/external/eigen/test/
Dhouseholder.cpp34 …SIZE_MAX(MatrixType::RowsAtCompileTime,MatrixType::ColsAtCompileTime), 1> _tmp((std::max)(rows,col… in householder() local
35 Scalar* tmp = &_tmp.coeffRef(0,0); in householder()
/external/fsverity-utils/
Dcmd_setup.c341 struct filedes _tmp = { .fd = -1 }; in fsveritysetup() local
390 src = &_tmp; in fsveritysetup()
441 filedes_close(&_tmp); in fsveritysetup()
/external/libusb/libusb/
Dlibusb.h166 } _tmp; in libusb_cpu_to_le16() local
167 _tmp.b8[1] = (uint8_t) (x >> 8); in libusb_cpu_to_le16()
168 _tmp.b8[0] = (uint8_t) (x & 0xff); in libusb_cpu_to_le16()
169 return _tmp.b16; in libusb_cpu_to_le16()
/external/libusb/include/libusb/
Dlibusb.h166 } _tmp; in libusb_cpu_to_le16() local
167 _tmp.b8[1] = (uint8_t) (x >> 8); in libusb_cpu_to_le16()
168 _tmp.b8[0] = (uint8_t) (x & 0xff); in libusb_cpu_to_le16()
169 return _tmp.b16; in libusb_cpu_to_le16()
/external/linux-kselftest/tools/testing/selftests/bpf/
Dtest_lwt_seg6local.c18 ({ void *_tmp = _cursor; _cursor += _len; _tmp; })
/external/aac/libAACdec/src/
Dusacdec_fac.cpp528 FIXP_DBL _tmp[1024 + ALIGNMENT_DEFAULT / sizeof(FIXP_DBL)]; in CLpd_FAC_Acelp2Mdct() local
529 FIXP_DBL *tmp = (FIXP_DBL *)ALIGN_PTR(_tmp); in CLpd_FAC_Acelp2Mdct()
530 C_ALLOC_ALIGNED_REGISTER(tmp, sizeof(_tmp)); in CLpd_FAC_Acelp2Mdct()
/external/ImageMagick/PerlMagick/
DMakefile.am122 rm -f t/output* t/jng/*_tmp.jng t/*/output* ; \
/external/google-breakpad/src/third_party/libdisasm/
Dx86_format.c32 char _tmp[MAX_OP_STRING]; \
34 snprintf( _tmp, sizeof _tmp, fmt, data ); \
35 STRNCAT( buf, _tmp, len ); \
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
DRFC3280CertPathUtilities.java1388 Object _tmp = _policySetIter.next(); in processCertD() local
1391 if (_tmp instanceof String) in processCertD()
1393 _policy = (String)_tmp; in processCertD()
1395 else if (_tmp instanceof ASN1ObjectIdentifier) in processCertD()
1397 _policy = ((ASN1ObjectIdentifier)_tmp).getId(); in processCertD()
/external/boringssl/src/crypto/fipsmodule/aes/asm/
Daes-586.pl2044 my $_tmp=&DWP(52,"esp"); # volatile variable
2216 &mov ($_tmp,$key);
2228 &mov ($key,$_tmp); # load ivp
2244 &mov ($_tmp,$acc); # save ivp
2252 &mov ($key,$_tmp); # load temp ivp
2358 &mov ($_tmp,$s0); # save OPENSSL_ia32cap
2385 &bt ($_tmp,25); # check for SSE bit
2500 &bt ($_tmp,25); # check for SSE bit
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jce/provider/
DRFC3280CertPathUtilities.java1389 Object _tmp = _policySetIter.next(); in processCertD() local
1392 if (_tmp instanceof String) in processCertD()
1394 _policy = (String)_tmp; in processCertD()
1396 else if (_tmp instanceof ASN1ObjectIdentifier) in processCertD()
1398 _policy = ((ASN1ObjectIdentifier)_tmp).getId(); in processCertD()
/external/cn-cbor/cmake/
DCoverallsGenerateGcov.cmake276 file(WRITE ${GCOV_FILE}_tmp "${GCOV_CONTENTS}")
278 file(STRINGS ${GCOV_FILE}_tmp GCOV_LINES)
/external/mesa3d/src/mesa/math/
Dm_matrix.c336 #define SWAP_ROWS(a, b) { GLfloat *_tmp = a; (a)=(b); (b)=_tmp; }

12