/packages/apps/Gallery2/src/com/android/photos/data/ |
SQLiteContentProvider.java | 139 int numValues = values.length; 144 for (int i = 0; i < numValues; i++) { 155 return numValues;
|
/external/opencv3/modules/features2d/src/ |
matchers.cpp | [all...] |
/frameworks/base/rs/java/android/renderscript/ |
ScriptGroup.java | 124 int numValues = args.length + globals.size(); 126 long[] fieldIDs = new long[numValues]; 127 long[] values = new long[numValues]; 128 int[] sizes = new int[numValues]; 129 long[] depClosures = new long[numValues]; 130 long[] depFieldIDs = new long[numValues]; 164 int numValues = globals.size(); 166 long[] fieldIDs = new long[numValues]; 167 long[] values = new long[numValues]; 168 int[] sizes = new int[numValues]; [all...] |
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
ScriptGroup.java | 137 int numValues = args.length + globals.size(); 139 long[] fieldIDs = new long[numValues]; 140 long[] values = new long[numValues]; 141 int[] sizes = new int[numValues]; 142 long[] depClosures = new long[numValues]; 143 long[] depFieldIDs = new long[numValues]; 180 int numValues = globals.size(); 182 long[] fieldIDs = new long[numValues]; 183 long[] values = new long[numValues]; 184 int[] sizes = new int[numValues]; [all...] |
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
SQLiteContentProvider.java | 122 int numValues = values.length; 128 for (int i = 0; i < numValues; i++) { 142 return numValues;
|
/cts/hostsidetests/compilation/app/src/android/cts/compilation/ |
CompilationTargetActivity.java | 44 int numValues = params[0]; 51 List<Integer> values = makeValues(numValues); 78 private List<Integer> makeValues(int numValues) { 81 for (int i = 0; i < numValues; i++) {
|
/external/deqp/framework/common/ |
tcuAstcUtil.cpp | 120 inline int computeNumRequiredBits (const ISEParams& iseParams, int numValues) 124 case ISEMODE_TRIT: return deDivRoundUp32(numValues*8, 5) + numValues*iseParams.numBits; 125 case ISEMODE_QUINT: return deDivRoundUp32(numValues*7, 3) + numValues*iseParams.numBits; 126 case ISEMODE_PLAIN_BIT: return numValues*iseParams.numBits; 579 void decodeISETritBlock (ISEDecodedResult* dst, int numValues, BitAccessStream& data, int numBits) 581 DE_ASSERT(de::inRange(numValues, 1, 5)); 596 switch (numValues) 632 for (int i = 0; i < numValues; i++ [all...] |
tcuRandomValueIterator.hpp | 61 static RandomValueIterator begin (deUint32 seed, int numValues) { return RandomValueIterator<T>(seed, numValues); }
|
/external/chromium-trace/catapult/tracing/tracing/value/ |
numeric_test.html | 48 assert.equal(n.numValues, 6); 108 assert.equal(n0.numValues, 10);
|
numeric.html | 165 get numValues() { 172 return this.runningSum / this.numValues;
|
/external/deqp/external/vulkancts/modules/vulkan/compute/ |
vktComputeBasicComputeShaderTests.cpp | 151 const int numValues = workGroupSize * workGroupCount; 157 << " uint values[" << numValues << "];\n" 322 const int numValues = workGroupSize * workGroupCount; 328 << " uint values[" << numValues << "];\n" 493 const int numValues = workGroupSize * workGroupCount; 499 << " uint values[" << numValues << "];\n" [all...] |
/external/opencv3/3rdparty/libjasper/ |
jpc_util.c | 91 int jpc_atoaf(char *s, int *numvalues, double **values) 133 *numvalues = n;
|
jpc_util.h | 66 int jpc_atoaf(char *s, int *numvalues, double **values);
|
/external/skia/src/opts/ |
SkBitmapProcState_arm_neon.cpp | 87 // |srcData| and continues for the numValues() of the filter. 93 int numValues = filter.numValues(); 94 for (int outX = 0; outX < numValues; outX++) { 374 int num_values = filter.numValues();
|
/frameworks/av/services/audioflinger/ |
test-resample.cpp | 70 size_t numValues = 0; 81 values.resize(++numValues); 83 for (size_t i = 1; i < numValues; ) { 88 return numValues; 94 numValues++;
|
/external/deqp/modules/gles31/functional/ |
es31fBasicComputeShaderTests.cpp | 118 UBOToSSBOInvertCase (Context& context, const char* name, const char* description, int numValues, const tcu::IVec3& localSize, const tcu::IVec3& workSize) 120 , m_numValues (numValues) 238 CopyInvertSSBOCase (Context& context, const char* name, const char* description, int numValues, const tcu::IVec3& localSize, const tcu::IVec3& workSize) 240 , m_numValues (numValues) 359 InvertSSBOInPlaceCase (Context& context, const char* name, const char* description, int numValues, bool isSized, const tcu::IVec3& localSize, const tcu::IVec3& workSize) 361 , m_numValues (numValues) 461 WriteToMultipleSSBOCase (Context& context, const char* name, const char* description, int numValues, bool isSized, const tcu::IVec3& localSize, const tcu::IVec3& workSize) 463 , m_numValues (numValues) 600 const int numValues = workGroupSize*workGroupCount; 606 << " coherent uint values[" << numValues << "];\n [all...] |
/external/deqp/modules/gles2/functional/ |
es2fDepthStencilTests.cpp | 232 void getStencilTestValues (int stencilBits, int numValues, int* values) 234 int numLowest = numValues/2; 235 int numHighest = numValues-numLowest; 242 values[numValues-ndx-1] = maxVal-ndx; 273 int numValues = DE_LENGTH_OF_ARRAY(depthValues); 274 float depthStep = 2.0f/(float)(numValues-1); 276 for (int ndx = 0; ndx < numValues; ndx++) 338 const int numValues = 4*4; 339 float colorStep = 1.0f / numValues; // 0 is reserved for non-matching. 340 int stencilValues[numValues]; [all...] |