Searched defs:tmp (Results 1 - 25 of 204) sorted by last modified time

123456789

/frameworks/support/renderscript/v8/rs_support/
H A DrsMatrix2x2.h45 Matrix2x2 tmp; local
46 tmp.loadMultiply(this, rhs);
47 load(&tmp);
H A DrsMatrix3x3.h45 Matrix3x3 tmp; local
46 tmp.loadMultiply(this, rhs);
47 load(&tmp);
H A DrsMatrix4x4.h61 Matrix4x4 tmp; local
62 tmp.loadMultiply(this, rhs);
63 load(&tmp);
66 Matrix4x4 tmp; local
67 tmp.loadRotate(rot, x, y, z);
68 multiply(&tmp);
71 Matrix4x4 tmp; local
72 tmp.loadScale(x, y, z);
73 multiply(&tmp);
76 Matrix4x4 tmp; local
[all...]
H A DrsScriptC_Lib.cpp94 tm *tmp = localtime(timer); local
95 memcpy(local, tmp, sizeof(*tmp));
H A DrsStream.cpp36 uint64_t tmp; local
39 tmp = reinterpret_cast<const uint64_t *>(&mData[mPos])[0];
41 return tmp;
H A DrsStream.h33 float tmp = reinterpret_cast<const float *>(&mData[mPos])[0]; local
35 return tmp;
39 int32_t tmp = reinterpret_cast<const int32_t *>(&mData[mPos])[0]; local
41 return tmp;
45 uint32_t tmp = reinterpret_cast<const uint32_t *>(&mData[mPos])[0]; local
47 return tmp;
51 uint16_t tmp = reinterpret_cast<const uint16_t *>(&mData[mPos])[0]; local
53 return tmp;
56 uint8_t tmp = reinterpret_cast<const uint8_t *>(&mData[mPos])[0]; local
58 return tmp;
[all...]
/frameworks/rs/
H A DrsFont.cpp512 uint32_t tmp[4]; local
513 tmp[0] = RS_PROGRAM_PARAM_CONSTANT;
514 tmp[1] = (uint32_t)inputType.get();
515 tmp[2] = RS_PROGRAM_PARAM_TEXTURE_TYPE;
516 tmp[3] = RS_TEXTURE_2D;
523 tmp, 4);
H A DrsMatrix2x2.h45 Matrix2x2 tmp; local
46 tmp.loadMultiply(this, rhs);
47 load(&tmp);
H A DrsMatrix3x3.h45 Matrix3x3 tmp; local
46 tmp.loadMultiply(this, rhs);
47 load(&tmp);
H A DrsMatrix4x4.h61 Matrix4x4 tmp; local
62 tmp.loadMultiply(this, rhs);
63 load(&tmp);
66 Matrix4x4 tmp; local
67 tmp.loadRotate(rot, x, y, z);
68 multiply(&tmp);
71 Matrix4x4 tmp; local
72 tmp.loadScale(x, y, z);
73 multiply(&tmp);
76 Matrix4x4 tmp; local
[all...]
H A DrsProgramFragment.cpp111 uint32_t tmp[2]; local
112 tmp[0] = RS_PROGRAM_PARAM_CONSTANT;
113 tmp[1] = (uint32_t)inputType.get();
118 NULL, 0, NULL, tmp, 2);
H A DrsProgramVertex.cpp203 uint32_t tmp[4]; local
204 tmp[0] = RS_PROGRAM_PARAM_CONSTANT;
205 tmp[1] = (uint32_t)inputType.get();
206 tmp[2] = RS_PROGRAM_PARAM_INPUT;
207 tmp[3] = (uint32_t)attrElem.get();
210 NULL, 0, NULL, tmp, 4);
H A DrsScriptC_Lib.cpp94 tm *tmp = localtime(timer); local
95 memcpy(local, tmp, sizeof(*tmp));
H A DrsStream.cpp36 uint64_t tmp; local
39 tmp = reinterpret_cast<const uint64_t *>(&mData[mPos])[0];
41 return tmp;
H A DrsStream.h33 float tmp = reinterpret_cast<const float *>(&mData[mPos])[0]; local
35 return tmp;
39 int32_t tmp = reinterpret_cast<const int32_t *>(&mData[mPos])[0]; local
41 return tmp;
45 uint32_t tmp = reinterpret_cast<const uint32_t *>(&mData[mPos])[0]; local
47 return tmp;
51 uint16_t tmp = reinterpret_cast<const uint16_t *>(&mData[mPos])[0]; local
53 return tmp;
56 uint8_t tmp = reinterpret_cast<const uint8_t *>(&mData[mPos])[0]; local
58 return tmp;
[all...]
/frameworks/compile/slang/
H A Dslang_rs_reflection_base.cpp111 string tmp(s);
112 tmp.erase(pos);
113 return tmp;
152 stringstream tmp; local
157 tmp << ((api.getSExtValue() == 0) ? "false" : "true");
159 tmp << api.getSExtValue();
161 tmp << "L";
170 tmp << apf.convertToFloat() << "f";
172 tmp << apf.convertToDouble();
189 return tmp
[all...]
H A Dslang_rs_reflection_cpp.cpp136 stringstream tmp; local
137 tmp << slot;
138 write(string(" setVar(") + tmp.str() + ", v);");
164 stringstream tmp; local
165 tmp << "void forEach_" << ef->getName() << "(";
167 tmp << "android::sp<const android::renderscriptCpp::Allocation> ain";
168 tmp << ", android::sp<const android::renderscriptCpp::Allocation> aout";
170 tmp << "android::sp<const android::renderscriptCpp::Allocation> ain";
172 tmp << "android::sp<const android::renderscriptCpp::Allocation> aout";
181 tmp << rt
266 stringstream tmp; local
[all...]
/frameworks/native/libs/utils/
H A DLinearTransform.cpp230 T tmp = a; local
232 b = tmp;
H A DStringArray.cpp47 char** tmp; local
54 tmp = new char*[mMax];
55 if (tmp == NULL)
58 memcpy(tmp, mArray, mCurrent * sizeof(char*));
60 mArray = tmp;
/frameworks/native/opengl/libagl/
H A Dmatrix.cpp542 GLfloat tmp[4][4]; local
545 memcpy(tmp, src, sizeof(GLfloat)*16);
551 if (fabs(tmp[j][i]) > fabs(tmp[i][i])) {
559 t = tmp[i][k];
560 tmp[i][k] = tmp[swap][k];
561 tmp[swap][k] = t;
569 t = 1.0f / tmp[i][i];
571 tmp[
[all...]
/frameworks/compile/libbcc/runtime/lib/ppc/
H A Dgcc_qdiv.c21 double yq, tmp, q; local
46 tmp = LOWORDER(yq, yHi, yLo, qHi, qLo);
47 tmp = (x - yq) - tmp;
48 tmp = ((tmp + x1) - y1 * q) / y;
49 x = q + tmp;
51 dst.s.lo = (q - x) + tmp;
H A Dgcc_qmul.c21 double ab, tmp, tau; local
45 tmp = LOWORDER(ab, aHi, aLo, bHi, bLo);
46 tmp += (A * b + a * B);
47 tau = ab + tmp;
49 dst.s.lo = (ab - tau) + tmp;
/frameworks/compile/mclinker/include/mcld/ADT/
H A DBinTree.h170 Self tmp = *this; local
172 return tmp;
236 Self tmp = *this; local
238 return tmp;
247 Self tmp = *this; local
249 return tmp;
H A DHashIterator.h316 Self tmp = *this; local
318 return tmp;
/frameworks/compile/mclinker/include/mcld/Support/
H A DGCFactory.h108 Self tmp = *this; local
110 return tmp;

Completed in 599 milliseconds

123456789