HomeSort by relevance Sort by last modified time
    Searched defs:numValues (Results 1 - 25 of 121) sorted by null

1 2 3 4 5

  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
AudioGain.cpp 50 uint32_t numValues;
52 numValues = audio_channel_count_from_in_mask(mGain.channel_mask);
54 numValues = audio_channel_count_from_out_mask(mGain.channel_mask);
56 for (size_t i = 0; i < numValues; i++) {
79 uint32_t numValues;
81 numValues = audio_channel_count_from_in_mask(config->channel_mask);
83 numValues = audio_channel_count_from_out_mask(config->channel_mask);
85 for (size_t i = 0; i < numValues; i++) {
  /libcore/support/src/test/java/tests/util/
SummaryStatistics.java 21 private int numValues;
48 numValues++;
53 return sum / numValues;
58 double shiftedMean = (sum - numValues * firstValue) / numValues;
59 return (shiftedSquaresSum / numValues) - square(shiftedMean);
75 sb.append(numValues);
  /external/deqp/external/vulkancts/modules/vulkan/compute/
vktComputeBasicComputeShaderTests.cpp 154 const int numValues = workGroupSize * workGroupCount;
160 << " uint values[" << numValues << "];\n"
325 const int numValues = workGroupSize * workGroupCount;
331 << " uint values[" << numValues << "];\n"
496 const int numValues = workGroupSize * workGroupCount;
502 << " uint values[" << numValues << "];\n"
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
AnnotationParser.java 385 int numValues = input.readUnsignedShort();
386 CstArray.List list = new CstArray.List(numValues);
389 parsed(2, "num_values: " + numValues);
393 for (int i = 0; i < numValues; i++) {
  /external/deqp/modules/gles3/functional/
es3fShaderPackingFunctionTests.cpp 203 const int numValues = (int)inputs.size();
207 for (int valNdx = 0; valNdx < numValues; valNdx++)
235 m_testCtx.getLog() << TestLog::Message << (numValues - numFailed) << " / " << numValues << " values passed" << TestLog::EndMessage;
291 const int numValues = (int)inputs.size();
325 m_testCtx.getLog() << TestLog::Message << (numValues - numFailed) << " / " << numValues << " values passed" << TestLog::EndMessage;
394 const int numValues = (int)inputs.size();
426 m_testCtx.getLog() << TestLog::Message << (numValues - numFailed) << " / " << numValues << " values passed" << TestLog::EndMessage
    [all...]
es3fDepthStencilClearTests.cpp 363 int numValues = (1 << TestCase::m_context.getRenderContext().getRenderTarget().getStencilBits()); // 2^bits
364 int step = numValues / numSteps;
  /external/deqp/modules/gles31/functional/
es31fBasicComputeShaderTests.cpp 121 UBOToSSBOInvertCase (Context& context, const char* name, const char* description, int numValues, const tcu::IVec3& localSize, const tcu::IVec3& workSize)
123 , m_numValues (numValues)
243 CopyInvertSSBOCase (Context& context, const char* name, const char* description, int numValues, const tcu::IVec3& localSize, const tcu::IVec3& workSize)
245 , m_numValues (numValues)
366 InvertSSBOInPlaceCase (Context& context, const char* name, const char* description, int numValues, bool isSized, const tcu::IVec3& localSize, const tcu::IVec3& workSize)
368 , m_numValues (numValues)
470 WriteToMultipleSSBOCase (Context& context, const char* name, const char* description, int numValues, bool isSized, const tcu::IVec3& localSize, const tcu::IVec3& workSize)
472 , m_numValues (numValues)
611 const int numValues = workGroupSize*workGroupCount;
619 << " coherent uint values[" << numValues << "];\n
    [all...]
es31fShaderAtomicOpTests.cpp 76 virtual void getInputs (int numValues, int stride, void* inputs) const = 0;
77 virtual bool verify (int numValues, int inputStride, const void* inputs, int outputStride, const void* outputs, int groupStride, const void* groupOutputs) const = 0;
123 const deUint32 numValues = product(m_workGroupSize)*product(m_numWorkGroups);
132 << " " << precName << " " << typeName << " inputValues[" << numValues << "];\n"
133 << " " << precName << " " << outTypeName << " outputValues[" << numValues << "];\n"
203 const deUint32 numValues = product(m_workGroupSize)*product(m_numWorkGroups);
205 TCU_CHECK(inVarInfo.arraySize == numValues &&
206 outVarInfo.arraySize == numValues &&
216 getInputs((int)numValues, (int)inVarInfo.arrayStride, &bufData[0] + inVarInfo.offset);
240 isOk = verify((int)numValues,
    [all...]
es31fShaderSharedVarTests.cpp 187 const int numValues = (int)product(m_workGroupSize);
196 const int minInt = -de::min(numValues/2, maxInt);
197 vector<float> values (numValues*scalarSize);
206 if (scalarSize == 1) gl.uniform1fv(location, numValues, &values[0]);
207 else if (scalarSize == 2) gl.uniform2fv(location, numValues, &values[0]);
208 else if (scalarSize == 3) gl.uniform3fv(location, numValues, &values[0]);
209 else if (scalarSize == 4) gl.uniform4fv(location, numValues, &values[0]);
215 const int minInt = -de::min(numValues/2, maxInt);
216 vector<int> values (numValues*scalarSize);
225 if (scalarSize == 1) gl.uniform1iv(location, numValues, &values[0])
    [all...]
es31fShaderPackingFunctionTests.cpp 207 const int numValues = (int)inputs.size();
211 for (int valNdx = 0; valNdx < numValues; valNdx++)
239 m_testCtx.getLog() << TestLog::Message << (numValues - numFailed) << " / " << numValues << " values passed" << TestLog::EndMessage;
295 const int numValues = (int)inputs.size();
329 m_testCtx.getLog() << TestLog::Message << (numValues - numFailed) << " / " << numValues << " values passed" << TestLog::EndMessage;
398 const int numValues = (int)inputs.size();
430 m_testCtx.getLog() << TestLog::Message << (numValues - numFailed) << " / " << numValues << " values passed" << TestLog::EndMessage
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorForcedEval.h 117 const Index numValues = internal::array_prod(m_impl.dimensions());
118 m_buffer = (CoeffReturnType*)m_device.allocate(numValues * sizeof(CoeffReturnType));
121 for (Index i = 0; i < numValues; ++i) {
  /external/icu/icu4c/source/i18n/
uspoof_conf.cpp 412 int32_t numValues = fValueVec->size();
413 U_ASSERT(numKeys == numValues);
419 for (i=0; i<numValues; i++) {
426 rawData->fCFUStringIndexSize = numValues;
  /frameworks/av/media/libaudioprocessing/tests/
test_utils.h 60 size_t numValues = 0;
71 values.resize(++numValues);
73 for (size_t i = 1; i < numValues; ) {
78 return numValues;
84 numValues++;
test-resampler.cpp 70 size_t numValues = 0;
81 values.resize(++numValues);
83 for (size_t i = 1; i < numValues; ) {
88 return numValues;
94 numValues++;
  /frameworks/ex/common/java/com/android/common/content/
SQLiteContentProvider.java 123 int numValues = values.length;
127 for (int i = 0; i < numValues; i++) {
144 return numValues;
  /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;
  /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;
  /external/deqp/external/vulkancts/modules/vulkan/ycbcr/
vktYCbCrViewTests.cpp 623 const size_t numValues = 500;
624 vector<Vec2> texCoord (numValues);
625 vector<Vec4> resultWhole (numValues);
626 vector<Vec4> resultPlane (numValues);
627 vector<Vec4> referenceWhole (numValues);
628 vector<Vec4> referencePlane (numValues);
632 generateLookupCoordinates(size, numValues, &randomGen, &texCoord);
639 executor->execute((int)numValues, inputs, outputs, *descSet);
651 for (size_t ndx = 0; ndx < numValues; ++ndx)
659 for (size_t ndx = 0; ndx < numValues; ++ndx
    [all...]
  /external/deqp/modules/gles2/functional/
es2fDepthStencilClearTests.cpp 360 int numValues = (1 << TestCase::m_context.getRenderContext().getRenderTarget().getStencilBits()); // 2^bits
361 int step = numValues / numSteps;
  /frameworks/base/core/java/android/animation/
ObjectAnimator.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ViewTransformationHelper.java 216 int numValues = mTransformedViews.size();
217 for (int i = 0; i < numValues; i++) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactMetadataProvider.java 320 final int numValues = super.bulkInsert(uri, values);
322 return numValues;
  /external/deqp/external/openglcts/modules/common/
glcShaderLibraryCase.cpp 367 int numValues = (int)valueBlock.values.size();
371 vector<vector<float> > attribValues(numValues);
376 for (int valNdx = 0; valNdx < numValues; valNdx++)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderPackingFunctionTests.cpp 208 const int numValues = (int)inputs.size();
212 for (int valNdx = 0; valNdx < numValues; valNdx++)
240 m_testCtx.getLog() << TestLog::Message << (numValues - numFailed) << " / " << numValues << " values passed" << TestLog::EndMessage;
314 const int numValues = (int)inputs.size();
348 m_testCtx.getLog() << TestLog::Message << (numValues - numFailed) << " / " << numValues << " values passed" << TestLog::EndMessage;
431 const int numValues = (int)inputs.size();
463 m_testCtx.getLog() << TestLog::Message << (numValues - numFailed) << " / " << numValues << " values passed" << TestLog::EndMessage
    [all...]
  /external/desugar/java/com/google/devtools/common/options/
InvocationPolicyEnforcer.java 373 int numValues = repeatableSubflagsInSetValues.get(repeatableFlag).size();
374 ArrayList<String> newValues = new ArrayList<>(numValues);
375 ArrayList<OptionInstanceOrigin> origins = new ArrayList<>(numValues);
    [all...]

Completed in 1416 milliseconds

1 2 3 4 5