/frameworks/av/services/audiopolicy/common/managerdefinitions/src/ |
D | AudioGain.cpp | 50 uint32_t numValues; in getDefaultConfig() local 52 numValues = audio_channel_count_from_in_mask(mGain.channel_mask); in getDefaultConfig() 54 numValues = audio_channel_count_from_out_mask(mGain.channel_mask); in getDefaultConfig() 56 for (size_t i = 0; i < numValues; i++) { in getDefaultConfig() 79 uint32_t numValues; in checkConfig() local 81 numValues = audio_channel_count_from_in_mask(config->channel_mask); in checkConfig() 83 numValues = audio_channel_count_from_out_mask(config->channel_mask); in checkConfig() 85 for (size_t i = 0; i < numValues; i++) { in checkConfig()
|
/frameworks/rs/ |
D | rsClosure.cpp | 61 const int numValues, in Closure() argument 72 for (i = 0; i < (size_t)numValues && fieldIDs[i] == nullptr; i++); in Closure() 80 for (; i < (size_t)numValues; i++) { in Closure() 97 for (; i < (size_t)numValues; i++) { in Closure() 114 const size_t numValues, const ScriptFieldID** fieldIDs, in Closure() argument 121 for (size_t i = 0; i < numValues; i++) { in Closure()
|
D | rsClosure.h | 25 const int numValues, 35 const size_t numValues,
|
/frameworks/base/core/java/android/animation/ |
D | ValueAnimator.java | 519 int numValues = values.length; in setValues() local 521 mValuesMap = new HashMap<String, PropertyValuesHolder>(numValues); in setValues() 522 for (int i = 0; i < numValues; ++i) { in setValues() 555 int numValues = mValues.length; in initAnimation() local 556 for (int i = 0; i < numValues; ++i) { in initAnimation() 1515 int numValues = mValues.length; in animateValue() local 1516 for (int i = 0; i < numValues; ++i) { in animateValue() 1554 int numValues = oldValues.length; in clone() local 1555 anim.mValues = new PropertyValuesHolder[numValues]; in clone() 1556 anim.mValuesMap = new HashMap<String, PropertyValuesHolder>(numValues); in clone() [all …]
|
D | ObjectAnimator.java | 889 final int numValues = mValues.length; in initAnimation() local 890 for (int i = 0; i < numValues; ++i) { in initAnimation() 944 final int numValues = mValues.length; in setupStartValues() local 945 for (int i = 0; i < numValues; ++i) { in setupStartValues() 957 final int numValues = mValues.length; in setupEndValues() local 958 for (int i = 0; i < numValues; ++i) { in setupEndValues() 988 int numValues = mValues.length; in animateValue() local 989 for (int i = 0; i < numValues; ++i) { in animateValue()
|
/frameworks/av/media/libaudioprocessing/tests/ |
D | 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++;
|
D | test-resampler.cpp | 70 size_t numValues = 0; in parseCSV() local 81 values.resize(++numValues); in parseCSV() 83 for (size_t i = 1; i < numValues; ) { in parseCSV() 88 return numValues; in parseCSV() 94 numValues++; in parseCSV()
|
/frameworks/base/rs/java/android/renderscript/ |
D | ScriptGroup.java | 124 int numValues = args.length + globals.size(); in Closure() local 126 long[] fieldIDs = new long[numValues]; in Closure() 127 long[] values = new long[numValues]; in Closure() 128 int[] sizes = new int[numValues]; in Closure() 129 long[] depClosures = new long[numValues]; in Closure() 130 long[] depFieldIDs = new long[numValues]; in Closure() 164 int numValues = globals.size(); in Closure() local 166 long[] fieldIDs = new long[numValues]; in Closure() 167 long[] values = new long[numValues]; in Closure() 168 int[] sizes = new int[numValues]; in Closure() [all …]
|
/frameworks/ex/common/java/com/android/common/content/ |
D | SQLiteContentProvider.java | 123 int numValues = values.length; in bulkInsert() local 127 for (int i = 0; i < numValues; i++) { in bulkInsert() 144 return numValues; in bulkInsert()
|
/frameworks/rs/support/java/src/android/support/v8/renderscript/ |
D | ScriptGroup.java | 137 int numValues = args.length + globals.size(); in Closure() local 139 long[] fieldIDs = new long[numValues]; in Closure() 140 long[] values = new long[numValues]; in Closure() 141 int[] sizes = new int[numValues]; in Closure() 142 long[] depClosures = new long[numValues]; in Closure() 143 long[] depFieldIDs = new long[numValues]; in Closure() 180 int numValues = globals.size(); in Closure() local 182 long[] fieldIDs = new long[numValues]; in Closure() 183 long[] values = new long[numValues]; in Closure() 184 int[] sizes = new int[numValues]; in Closure() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | ViewTransformationHelper.java | 214 int numValues = mTransformedViews.size(); in addRemainingTransformTypes() local 215 for (int i = 0; i < numValues; i++) { in addRemainingTransformTypes()
|
/frameworks/rs/support/jni/ |
D | android_renderscript_RenderScript.cpp | 373 size_t numValues, numDependencies; in nClosureCreate() local 383 numValues = (size_t)fieldIDs_length; in nClosureCreate() 392 if (numDependencies > numValues) { in nClosureCreate() 397 if (numValues > RS_CLOSURE_MAX_NUMBER_ARGS_AND_BINDINGS) { in nClosureCreate() 402 if (numValues > 0) { in nClosureCreate() 403 fieldIDs = (RsScriptFieldID*)alloca(sizeof(RsScriptFieldID) * numValues); in nClosureCreate() 413 for (size_t i = 0; i < numValues; i++) { in nClosureCreate() 444 fieldIDs, numValues, jValues, numValues, in nClosureCreate() 445 (int*)jSizes, numValues, in nClosureCreate() 475 size_t numValues; in nInvokeClosureCreate() local [all …]
|
/frameworks/base/rs/jni/ |
D | android_renderscript_RenderScript.cpp | 395 size_t numValues, numDependencies; in nClosureCreate() local 405 numValues = (size_t)fieldIDs_length; in nClosureCreate() 414 if (numDependencies > numValues) { in nClosureCreate() 419 if (numValues > RS_CLOSURE_MAX_NUMBER_ARGS_AND_BINDINGS) { in nClosureCreate() 424 if (numValues > 0) { in nClosureCreate() 425 fieldIDs = (RsScriptFieldID*)alloca(sizeof(RsScriptFieldID) * numValues); in nClosureCreate() 435 for (size_t i = 0; i < numValues; i++) { in nClosureCreate() 465 fieldIDs, numValues, jValues, numValues, in nClosureCreate() 466 (int*)jSizes, numValues, in nClosureCreate() 515 size_t numValues; in nInvokeClosureCreate() local [all …]
|
/frameworks/base/core/jni/ |
D | android_media_AudioSystem.cpp | 822 int numValues; in convertAudioPortConfigFromNative() local 824 numValues = audio_channel_count_from_in_mask(nAudioPortConfig->gain.channel_mask); in convertAudioPortConfigFromNative() 826 numValues = audio_channel_count_from_out_mask(nAudioPortConfig->gain.channel_mask); in convertAudioPortConfigFromNative() 828 jGainValues = env->NewIntArray(numValues); in convertAudioPortConfigFromNative() 830 ALOGV("convertAudioPortConfigFromNative could not create gain values %d", numValues); in convertAudioPortConfigFromNative() 834 env->SetIntArrayRegion(jGainValues, 0, numValues, in convertAudioPortConfigFromNative()
|
/frameworks/base/core/java/android/content/ |
D | ContentProvider.java | 1304 int numValues = values.length; in bulkInsert() local 1305 for (int i = 0; i < numValues; i++) { in bulkInsert() 1308 return numValues; in bulkInsert()
|