/external/autotest/client/site_tests/platform_TempFS/ |
control | 6 DOC = "Verifies temp filesystems have enough available space." 8 PURPOSE = "Verify Temp file systems are set up correctly."
|
/external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/ |
UnicodeSetPerf.java | 89 int temp = 0; 92 temp += cp; 111 int temp = 0; 114 temp += cp; 128 int temp = 0; 131 temp += uit.codepoint; 149 int temp = 0; 152 temp += ((Integer)itr.next()).intValue();
|
/external/pdfium/xfa/src/fxbarcode/common/reedsolomon/ |
BC_ReedSolomon.cpp | 40 CFX_Int32Array temp;
local 41 temp.Add(1);
42 temp.Add(m_field->Exp(d - 1));
44 temp_poly.Init(m_field, &temp, e);
82 CBC_AutoPtr<CFX_PtrArray> temp(pa);
84 (CBC_ReedSolomonGF256Poly*)(temp->operator[](1));
94 for (int32_t k = 0; k < temp->GetSize(); k++) {
95 delete (CBC_ReedSolomonGF256Poly*)(*temp)[k];
|
/external/toybox/toys/other/ |
nbd_client.c | 51 int temp; local 56 temp = 1; 57 setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, &temp, sizeof(int)); 73 temp = (flags & 2) ? 1 : 0; 74 xioctl(nbd, BLKROSET, &temp); 89 temp = open(toybuf, O_RDONLY); 90 if (temp == -1) msleep(100); 92 close(temp);
|
/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
LVM_Polynomial.c | 49 LVM_INT32 Y,A,XTemp,Temp,sign; 56 Temp=-1; 57 sign=Temp; 62 sign*=Temp; 75 MUL32x32INTO32(A,XTemp,Temp,31) 76 Y+=Temp; 78 MUL32x32INTO32(XTemp,X,Temp,31) 79 XTemp=Temp;
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
toaiff.py | 70 for temp in temps[:]: 71 if temp != ret: 73 os.unlink(temp) 76 temps.remove(temp) 104 (fd, temp) = tempfile.mkstemp() 106 temps.append(temp) 107 sts = table[ftype].copy(fname, temp) 110 return temp
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
toaiff.py | 70 for temp in temps[:]: 71 if temp != ret: 73 os.unlink(temp) 76 temps.remove(temp) 104 (fd, temp) = tempfile.mkstemp() 106 temps.append(temp) 107 sts = table[ftype].copy(fname, temp) 110 return temp
|
/prebuilts/go/darwin-x86/src/math/ |
asinh.go | 54 var temp float64 57 temp = Log(x) + Ln2 // |x| > 2**28 59 temp = Log(2*x + 1/(Sqrt(x*x+1)+x)) // 2**28 > |x| > 2.0 61 temp = x // |x| < 2**-28 63 temp = Log1p(x + x*x/(1+Sqrt(1+x*x))) // 2.0 > |x| > 2**-28 66 temp = -temp 68 return temp
|
/prebuilts/go/linux-x86/src/math/ |
asinh.go | 54 var temp float64 57 temp = Log(x) + Ln2 // |x| > 2**28 59 temp = Log(2*x + 1/(Sqrt(x*x+1)+x)) // 2**28 > |x| > 2.0 61 temp = x // |x| < 2**-28 63 temp = Log1p(x + x*x/(1+Sqrt(1+x*x))) // 2.0 > |x| > 2**-28 66 temp = -temp 68 return temp
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
toaiff.py | 70 for temp in temps[:]: 71 if temp != ret: 73 os.unlink(temp) 76 temps.remove(temp) 104 (fd, temp) = tempfile.mkstemp() 106 temps.append(temp) 107 sts = table[ftype].copy(fname, temp) 110 return temp
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
toaiff.py | 70 for temp in temps[:]: 71 if temp != ret: 73 os.unlink(temp) 76 temps.remove(temp) 104 (fd, temp) = tempfile.mkstemp() 106 temps.append(temp) 107 sts = table[ftype].copy(fname, temp) 110 return temp
|
/toolchain/binutils/binutils-2.25/libiberty/ |
ChangeLog.jit | 3 * choose-temp.c (choose_tmpdir): Remove now-redundant local 6 * make-temp-file.c (choose_tmpdir): Convert return type from
|
/cts/apps/CtsVerifier/include/colorchecker/ |
vec2.h | 34 Vec2<T> temp(mX + param.x(), mY + param.y()); 35 return temp; 39 Vec2<T> temp(mX - param.x(), mY - param.y()); 40 return temp;
|
/external/elfutils/tests/ |
run-readelf-test1.sh | 23 debugout=${debugfile:+-f testfile.debug.temp -F $debugfile} 27 tempfiles testfile.temp 29 testrun ${abs_top_builddir}/src/readelf -r testfile3 > testfile.temp 31 diff -u - testfile.temp <<EOF
|
/external/jacoco/org.jacoco.ant.test/src/org/jacoco/ant/ |
DumpTaskTest.xml | 19 <tempfile property="temp.dir" prefix="jacocoTest" destdir="${java.io.tmpdir}" /> 20 <mkdir dir="${temp.dir}"/> 21 <property name="exec.file" location="${temp.dir}/exec.file" /> 25 <delete dir="${temp.dir}" quiet="false" failonerror="true"/>
|
/external/netperf/src/ |
netcpu.h | 9 /* +*+ temp until I figure out what header this is in; I know it's
|
/external/okhttp/ |
deploy_website.sh | 9 DIR=temp-clone 14 # Clone the current repo into temp folder 17 # Move working directory into temp folder 53 # Delete our temp folder
|
/external/opencv3/modules/video/test/ |
test_accum.cpp | 121 Mat temp; local 122 cvtest::add( src, 1, dst, 1, cvScalarAll(0.), temp, dst.type() ); 123 cvtest::copy( temp, dst, mask ); 154 Mat temp; local 156 cvtest::convert( src, temp, dst.type() ); 157 cvtest::multiply( temp, temp, temp, 1 ); 158 cvtest::add( temp, 1, dst, 1, cvScalarAll(0.), temp, dst.depth() ) 231 Mat temp; local [all...] |
/external/protobuf/src/google/protobuf/stubs/ |
atomicops_internals_x86_gcc.h | 77 Atomic32 temp = increment; local 79 : "+r" (temp), "+m" (*ptr) 81 // temp now holds the old value of *ptr 82 return temp + increment; 87 Atomic32 temp = increment; local 89 : "+r" (temp), "+m" (*ptr) 91 // temp now holds the old value of *ptr 95 return temp + increment; 201 Atomic64 temp = increment; local 203 : "+r" (temp), "+m" (*ptr 211 Atomic64 temp = increment; local [all...] |
/external/v8/src/base/ |
atomicops_internals_x86_gcc.h | 52 Atomic32 temp = increment; local 54 : "+r" (temp), "+m" (*ptr) 56 // temp now holds the old value of *ptr 57 return temp + increment; 62 Atomic32 temp = increment; local 64 : "+r" (temp), "+m" (*ptr) 66 // temp now holds the old value of *ptr 70 return temp + increment; 184 Atomic64 temp = increment; local 186 : "+r" (temp), "+m" (*ptr 194 Atomic64 temp = increment; local [all...] |
/frameworks/av/media/libstagefright/codecs/aacenc/src/ |
tns.c | 100 Word32 temp, shift; local 107 temp = lineNumber - bandStartOffset[numOfBands] ; 108 if (temp >= 0) 113 temp = bandStartOffset[band + 1] - lineNumber; 114 if (temp > 0) break; 117 temp = (lineNumber - bandStartOffset[band]); 118 temp = (temp - (bandStartOffset[band + 1] - lineNumber)); 119 if ( temp > 0 ) 279 Word32 temp; local 365 Word32 i, temp; local 404 Word32 temp; local 696 Word32 temp, workBuffer0; local 735 Word32 temp; local 750 Word32 temp; local 764 Word32 temp; local 788 Word32 temp; local 813 Word32 temp; local [all...] |
/frameworks/rs/java/tests/LatencyBenchmark/src/com/example/android/rs/computebench/ |
Benchmark.java | 36 int[] temp; local 37 temp = new int[1]; 43 aout.copy1DRangeFrom(0, 1, temp); 54 aout.copy1DRangeFrom(0, 1, temp);
|
/hardware/bsp/intel/peripheral/libupm/examples/c++/ |
grovetemp.cxx | 37 upm::GroveTemp* temp = new upm::GroveTemp(0); local 38 std::cout << temp->name() << std::endl; 43 int celsius = temp->value(); 51 delete temp;
|
/hardware/bsp/intel/peripheral/libupm/examples/python/ |
grovetemp.py | 28 temp = grove.GroveTemp(0) variable 29 print temp.name() 34 celsius = temp.value() 41 del temp
|
/prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/stubs/ |
atomicops_internals_x86_gcc.h | 77 Atomic32 temp = increment; local 79 : "+r" (temp), "+m" (*ptr) 81 // temp now holds the old value of *ptr 82 return temp + increment; 87 Atomic32 temp = increment; local 89 : "+r" (temp), "+m" (*ptr) 91 // temp now holds the old value of *ptr 95 return temp + increment; 201 Atomic64 temp = increment; local 203 : "+r" (temp), "+m" (*ptr 211 Atomic64 temp = increment; local [all...] |