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

1 2 3

  /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;
43 numValues++;
49 return sum / numValues;
54 return (squaresSum / numValues) - square(mean());
70 sb.append(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/skia/src/core/
SkConvolver.h 58 int numValues() const { return static_cast<int>(fFilters.count()); }
183 // size will be xfilter.numValues() * yfilter.numValues() pixels. It will be
184 // in rows of exactly xfilter.numValues() * 4 bytes.
SkConvolver.cpp 112 // |srcData| and continues for the numValues() of the filter.
118 int numValues = filter.numValues();
119 for (int outX = 0; outX < numValues; outX++) {
375 int rowBufferWidth = (filterX.numValues() + 15) & ~0xF;
398 SkASSERT(outputByteRowStride >= filterX.numValues() * 4);
399 int numOutputRows = filterY.numValues();
412 filterX.FilterForValue(filterX.numValues() - 1, &lastFilterOffset,
476 filterX.numValues(), curOutputRow,
481 filterX.numValues(), curOutputRow
    [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 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...]
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/icu/icu4c/source/i18n/
uspoof_conf.cpp 454 int32_t numValues = fValueVec->size();
455 U_ASSERT(numKeys == numValues);
461 for (i=0; i<numValues; i++) {
468 rawData->fCFUStringIndexSize = numValues;
  /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/tests/
test_utils.h 54 size_t numValues = 0;
65 values.resize(++numValues);
67 for (size_t i = 1; i < numValues; ) {
72 return numValues;
78 numValues++;
  /frameworks/base/cmds/bootanimation/
AudioPlayer.cpp 84 int numValues = mixer_ctl_get_num_values(ctl);
88 for (int i = 0; i < numValues && values; i++) {
  /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/modules/gles2/functional/
es2fDepthStencilClearTests.cpp 360 int numValues = (1 << TestCase::m_context.getRenderContext().getRenderTarget().getStencilBits()); // 2^bits
361 int step = numValues / numSteps;
  /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++;
  /frameworks/base/core/java/android/animation/
ObjectAnimator.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ViewTransformationHelper.java 220 int numValues = mTransformedViews.size();
221 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/vulkancts/modules/vulkan/shaderexecutor/
vktShaderPackingFunctionTests.cpp 220 const int numValues = (int)inputs.size();
224 for (int valNdx = 0; valNdx < numValues; valNdx++)
252 m_testCtx.getLog() << TestLog::Message << (numValues - numFailed) << " / " << numValues << " values passed" << TestLog::EndMessage;
327 const int numValues = (int)inputs.size();
361 m_testCtx.getLog() << TestLog::Message << (numValues - numFailed) << " / " << numValues << " values passed" << TestLog::EndMessage;
445 const int numValues = (int)inputs.size();
477 m_testCtx.getLog() << TestLog::Message << (numValues - numFailed) << " / " << numValues << " values passed" << TestLog::EndMessage
    [all...]

Completed in 2373 milliseconds

1 2 3