HomeSort by relevance Sort by last modified time
    Searched defs:tmp (Results 126 - 150 of 2945) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
rsMatrix2x2.h 45 Matrix2x2 tmp; local
46 tmp.loadMultiply(this, rhs);
47 load(&tmp);
rsMatrix3x3.h 45 Matrix3x3 tmp; local
46 tmp.loadMultiply(this, rhs);
47 load(&tmp);
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
rsMatrix2x2.h 45 Matrix2x2 tmp; local
46 tmp.loadMultiply(this, rhs);
47 load(&tmp);
rsMatrix3x3.h 45 Matrix3x3 tmp; local
46 tmp.loadMultiply(this, rhs);
47 load(&tmp);
  /system/core/libdiskconfig/
diskutils.c 40 ssize_t tmp; local
84 if ((tmp = write(dst_fd, buffer, nr_bytes)) < 0) {
91 if (!tmp)
93 nr_bytes -= tmp;
  /system/core/libutils/tests/
BitSet_test.cpp 41 BitSet32 tmp = b1 | b2; local
42 EXPECT_EQ(tmp.count(), 2u);
43 EXPECT_TRUE(tmp.hasBit(2) && tmp.hasBit(4));
57 BitSet32 tmp = b1 & b2; local
58 EXPECT_TRUE(tmp.isEmpty());
76 BitSet32 tmp = b1 & b2; local
77 EXPECT_EQ(tmp.count(), 1u);
78 EXPECT_TRUE(tmp.hasBit(6));
163 BitSet64 tmp = b1 | b2 local
179 BitSet64 tmp = b1 & b2; local
198 BitSet64 tmp = b1 & b2; local
    [all...]
  /external/apache-http/src/org/apache/http/impl/auth/
BasicScheme.java 165 StringBuilder tmp = new StringBuilder(); local
166 tmp.append(credentials.getUserPrincipal().getName());
167 tmp.append(":");
168 tmp.append((credentials.getPassword() == null) ? "null" : credentials.getPassword());
171 EncodingUtils.getBytes(tmp.toString(), charset));
  /frameworks/base/rs/java/android/renderscript/
Matrix3f.java 230 Matrix3f tmp = new Matrix3f(); local
231 tmp.loadMultiply(this, rhs);
232 load(tmp);
245 Matrix3f tmp = new Matrix3f(); local
246 tmp.loadRotate(rot, x, y, z);
247 multiply(tmp);
257 Matrix3f tmp = new Matrix3f(); local
258 tmp.loadRotate(rot);
259 multiply(tmp);
270 Matrix3f tmp = new Matrix3f() local
284 Matrix3f tmp = new Matrix3f(); local
297 Matrix3f tmp = new Matrix3f(); local
    [all...]
Matrix2f.java 153 Matrix2f tmp = new Matrix2f(); local
154 tmp.loadMultiply(this, rhs);
155 load(tmp);
164 Matrix2f tmp = new Matrix2f(); local
165 tmp.loadRotate(rot);
166 multiply(tmp);
176 Matrix2f tmp = new Matrix2f(); local
177 tmp.loadScale(x, y);
178 multiply(tmp);
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Matrix3f.java 233 Matrix3f tmp = new Matrix3f(); local
234 tmp.loadMultiply(this, rhs);
235 load(tmp);
248 Matrix3f tmp = new Matrix3f(); local
249 tmp.loadRotate(rot, x, y, z);
250 multiply(tmp);
260 Matrix3f tmp = new Matrix3f(); local
261 tmp.loadRotate(rot);
262 multiply(tmp);
273 Matrix3f tmp = new Matrix3f() local
287 Matrix3f tmp = new Matrix3f(); local
300 Matrix3f tmp = new Matrix3f(); local
    [all...]
Matrix2f.java 156 Matrix2f tmp = new Matrix2f(); local
157 tmp.loadMultiply(this, rhs);
158 load(tmp);
167 Matrix2f tmp = new Matrix2f(); local
168 tmp.loadRotate(rot);
169 multiply(tmp);
179 Matrix2f tmp = new Matrix2f(); local
180 tmp.loadScale(x, y);
181 multiply(tmp);
  /art/compiler/
output_stream_test.cc 64 ScratchFile tmp; local
65 FileOutputStream output_stream(tmp.GetFile());
68 std::unique_ptr<File> in(OS::OpenFileForReading(tmp.GetFilename().c_str()));
77 ScratchFile tmp; local
78 std::unique_ptr<FileOutputStream> file_output_stream(new FileOutputStream(tmp.GetFile()));
83 std::unique_ptr<File> in(OS::OpenFileForReading(tmp.GetFilename().c_str()));
  /art/runtime/
zip_archive_test.cc 42 ScratchFile tmp; local
43 ASSERT_NE(-1, tmp.GetFd());
44 std::unique_ptr<File> file(new File(tmp.GetFd(), tmp.GetFilename()));
52 int fd = open(tmp.GetFilename().c_str(), O_RDONLY);
  /bionic/libc/dns/nameser/
ns_parse.c 143 int tmp; local
146 tmp = section;
147 if (tmp < 0 || section >= ns_s_max)
206 int tmp; local
209 tmp = section;
210 if (tmp < 0 || section >= ns_s_max)
  /bionic/libc/upstream-openbsd/lib/libc/net/
inet_ntop.c 74 char tmp[sizeof "255.255.255.255"]; local
77 l = snprintf(tmp, sizeof(tmp), "%u.%u.%u.%u",
83 strlcpy(dst, tmp, size);
103 char tmp[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"]; local
144 tp = tmp;
145 ep = tmp + sizeof(tmp);
199 if ((size_t)(tp - tmp) > size) {
203 strlcpy(dst, tmp, size)
    [all...]
  /cts/suite/cts/deviceTests/opengl/jni/reference/scene/flocking/
Boid.cpp 37 Vector2D tmp = mPosition.copy(); local
38 tmp.sub(b->mPosition);
39 tmp.normalize();
40 tmp.scale(1.0f / dist);
41 separation.add(tmp);
  /cts/tests/tests/os/jni/
android_os_cts_TaggedPointer.cpp 39 uintptr_t tmp; local
45 tmp = TAG_MASK | (uintptr_t)(&data);
46 tagged = (uint32_t *)tmp;
  /cts/tests/tests/security/jni/
android_security_cts_SELinuxTest.cpp 61 char *tmp = const_cast<char *>(context.c_str()); local
62 int validContext = security_check_context(tmp);
  /development/host/windows/usb/api/
adb_helper_routines.cpp 88 AdbEnumInterfaceArray tmp; local
114 tmp.push_back(AdbInstanceEnumEntry(dev_name.c_str(),
140 interfaces->swap(tmp);
  /device/asus/fugu/libaudio/
ATVAudioPolicyManager.cpp 79 audio_devices_t tmp = AUDIO_DEVICE_NONE;; local
97 tmp = mAvailableOutputDevices.types() | device;
101 tmp = mAvailableOutputDevices.types() & ~device;
108 gAudioHardwareOutput.updateRouting(tmp);
109 tmp = mAvailableOutputDevices.types();
119 if (tmp != mAvailableOutputDevices.types())
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
UnixStream.cpp 53 char tmp[PATH_MAX]; // temp directory local
60 snprintf(tmp, sizeof(tmp), "/tmp/android-%s", user);
62 ret = ::lstat(tmp, &st);
67 ret = ::mkdir(tmp, 0766);
70 ERR("Could not create temp directory: %s", tmp);
71 user = NULL; // will fall-back to /tmp
75 user = NULL; // will fallback to /tmp
79 if (user == NULL) { // fallback to /tmp in case of erro
    [all...]
  /external/aac/libAACdec/src/
ldfiltbank.cpp 111 FIXP_DBL z0, z2, tmp; local
118 tmp = ( fMultDiv2(z[N/2+i], fb[N+N/2-1-i]) + fMultDiv2(z[i], fb[N+N/2+i]) ) ;
122 output[(N*3/4-1-i)*stride] = (INT_PCM)SATURATE_RIGHT_SHIFT(tmp, -WTS1-1 + scale, SAMPLE_BITS);
125 output[(N*3/4-1-i)*stride] = (INT_PCM)SATURATE_LEFT_SHIFT(tmp, WTS1+1 - scale, SAMPLE_BITS);
  /external/aac/libAACenc/src/
tonality.cpp 134 FIXP_DBL tmp = fMultDiv2(alpha_1, chaosMeasurePerLine[j]); local
135 chaosMeasurePerLine[j] = fMultAdd(tmp, alpha_0, chaosMeasurePerLine[j-1]);
179 FIXP_DBL tmp = (*spectrum++)<<shiftBits; local
180 FIXP_DBL lineNrg = fMultDiv2(tmp, tmp);
  /external/aac/libSBRenc/src/
sbr_misc.cpp 243 FIXP_DBL tmp = FL2FXCONST_DBL(0.0f); local
254 tmp = fMultDiv2(num,scale);
256 if ( denom > (tmp >> fixMin(shiftNum+shiftScale-1,(DFRACT_BITS-1))) ) {
258 tmp = schur_div(tmp,denom,15);
261 tmp <<= -shiftCommon;
263 tmp >>= shiftCommon;
266 tmp = /*FL2FXCONST_DBL(1.0)*/ (FIXP_DBL)MAXVAL_DBL;
270 return (tmp);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
RDN.java 94 AttributeTypeAndValue[] tmp = new AttributeTypeAndValue[values.size()]; local
96 for (int i = 0; i != tmp.length; i++)
98 tmp[i] = AttributeTypeAndValue.getInstance(values.getObjectAt(i));
101 return tmp;

Completed in 964 milliseconds

1 2 3 4 56 7 8 91011>>