/cts/apps/CtsVerifier/jni/audio_loopback/audio_utils/ |
D | fifo.c | 67 int32_t front) in audio_utils_fifo_diff() argument 69 int32_t diff = rear - front; in audio_utils_fifo_diff() 72 int32_t genDiff = (rear & mask) - (front & mask); in audio_utils_fifo_diff() 85 int32_t front = android_atomic_acquire_load(&fifo->mFront); in audio_utils_fifo_write() local 87 size_t availToWrite = fifo->mFrameCount - audio_utils_fifo_diff(fifo, rear, front); in audio_utils_fifo_write() 113 int32_t front = fifo->mFront; in audio_utils_fifo_read() local 114 size_t availToRead = audio_utils_fifo_diff(fifo, rear, front); in audio_utils_fifo_read() 118 front &= fifo->mFrameCountP2 - 1; in audio_utils_fifo_read() 119 size_t part1 = fifo->mFrameCount - front; in audio_utils_fifo_read() 124 memcpy(buffer, (char *) fifo->mBuffer + (front * fifo->mFrameSize), in audio_utils_fifo_read()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/wavelib/ |
D | PipeShort.java | 97 int front = mFront & (mMaxValues - 1); in read() local 98 int red = mMaxValues - front; in read() 103 System.arraycopy(mBuffer, front, buffer, offset, red); in read() 105 if (front + red == mMaxValues) { in read() 106 if ((count -= red) > front) { in read() 107 count = front; in read()
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/ |
D | LayerInfo.java | 32 LayerInfo(int front, int back) { in LayerInfo() argument 33 frontDepth = front; in LayerInfo()
|
D | BlurStack.java | 198 int front = layerInfo[n].frontDepth; in toString() local 200 s += "\nlayer " + n + " num of disparities " + (front - back + 1) + "\n"; in toString() 202 for (int d = front; d >= back; --d) { in toString()
|
D | layered_filter_fast_f32.rs | 534 void SetTargetLayer(int front, int back) { 535 g_target_layer.front_depth = front; 548 void InitializeF32(int width, int height, int margin, int front, int back) { 550 g_focal_layer.front_depth = front; 563 InitializeVisibilityProbability(&g_visibility_probability, front, back);
|
D | layer_info.rsh | 4 // An object that contains the front and back depths values of a layer
|
D | layer_info_fast.rsh | 4 // An object that contains the front and back depths values of a layer
|
D | layered_filter_fast_d1new.rs | 784 void SetTargetLayer(int front, int back) { 785 g_target_layer_i2.s0 = front; 798 void InitializeFast(int width, int height, int margin, int front, int back) { 805 g_focal_layer_i2.s0 = front; 824 InitializeVisibilityProbability(&g_visibility_probability, front, back);
|
D | pixel_format_f32.rsh | 20 // 4. After each layer is processed from front-most layer to focal depth layer,
|
D | luts_for_speedup_f32.rsh | 41 // For a depth value within the focal layer, only depth values in front
|
D | layered_filter_f32_helper.rsh | 90 // bleeding from layers in front of this layer. Doing visibility test in a 151 // front-most to the focus depth.
|
D | layered_filter_d1new_helper.rsh | 150 // bleeding from layers in front of this layer. Doing visibility test in a 212 // front most layer to focus layer.
|
/cts/suite/audio_quality/test/ |
D | TaskCaseTest.cpp | 63 ASSERT_TRUE(((list->front().second.get() == buffer1.get()) && in TEST_F() 65 ((list->front().second.get() == buffer2.get()) && in TEST_F() 104 ASSERT_TRUE(((list->front().second == val2) && (list->back().second == val3)) || in TEST_F() 105 ((list->front().second == val3) && (list->back().second == val4))); in TEST_F()
|
/cts/tests/tests/jni/libjnitest/ |
D | android_jni_cts_LinkerNamespacesTest.cpp | 134 std::string dir = dirs.front(); in check_path()
|
/cts/tests/tests/media/libaudiojni/ |
D | audio-record-native.cpp | 313 auto b = mReadyQueue.front(); in read() 378 auto b = mDeliveredQueue.front(); in bufferQueueCallback()
|