/frameworks/av/media/libaudioclient/tests/ |
D | track_test_output_v1.0_ref_walleye.txt | 9 notif. frame count(2400), req. notif. frame count(2400), req. notif. per buff(0) 20 notif. frame count(1600), req. notif. frame count(2400), req. notif. per buff(0) 31 notif. frame count(1600), req. notif. frame count(2400), req. notif. per buff(0) 42 notif. frame count(1600), req. notif. frame count(2400), req. notif. per buff(0) 53 notif. frame count(1470), req. notif. frame count(2205), req. notif. per buff(0) 64 notif. frame count(1470), req. notif. frame count(2205), req. notif. per buff(0) 75 notif. frame count(1470), req. notif. frame count(2205), req. notif. per buff(0) 86 notif. frame count(2400), req. notif. frame count(2400), req. notif. per buff(0) 97 notif. frame count(2400), req. notif. frame count(2400), req. notif. per buff(0) 108 notif. frame count(2400), req. notif. frame count(2400), req. notif. per buff(0) [all …]
|
D | audio_test_utils.cpp | 514 RawBuffer buff{-1, timestampUs, static_cast<int32_t>(recordBuffer.size())}; in obtainBuffer() local 515 memcpy(buff.mData.get(), recordBuffer.data(), recordBuffer.size()); in obtainBuffer() 516 buffer = std::move(buff); in obtainBuffer()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenrecord/ |
D | ScreenInternalAudioRecorder.java | 216 private void scaleValues(short[] buff, int len, float scale) { in scaleValues() argument 218 int newValue = (int) (buff[i] * scale); in scaleValues() 219 buff[i] = (short) MathUtils.constrain(newValue, Short.MIN_VALUE, Short.MAX_VALUE); in scaleValues() 243 ByteBuffer buff = mCodec.getInputBuffer(bufferIndex); in encode() local 244 buff.clear(); in encode() 245 int bufferSize = buff.capacity(); in encode() 249 buff.put(buffer, offset, bytesToRead); in encode() 279 ByteBuffer buff = mCodec.getOutputBuffer(bufferIndex); in writeOutput() 283 mMuxer.writeSampleData(mTrackId, buff, bufferInfo); in writeOutput()
|
/frameworks/compile/slang/ |
D | slang_rs_reflect_utils.cpp | 133 static bool GenerateSegmentMethod(const char *buff, int blen, int bitwidth, in GenerateSegmentMethod() argument 151 out << std::setw(4) << static_cast<int>(buff[written]) << ","; in GenerateSegmentMethod() 185 char *buff = new char[SEG_SIZE]; in GenerateJavaCodeAccessorMethodForBitwidth() local 189 while ((read_length = fread(buff, 1, SEG_SIZE, pfin)) > 0) { in GenerateJavaCodeAccessorMethodForBitwidth() 190 GenerateSegmentMethod(buff, read_length, bitwidth, seg_num, out); in GenerateJavaCodeAccessorMethodForBitwidth() 194 delete[] buff; in GenerateJavaCodeAccessorMethodForBitwidth()
|
/frameworks/base/core/tests/coretests/src/android/database/sqlite/ |
D | SQLiteCursorTest.java | 78 StringBuilder buff = new StringBuilder(); in testFillWindow() local 80 buff.append(i % 10 + ""); in testFillWindow() 83 values.put("desc", buff.toString()); in testFillWindow()
|
/frameworks/av/media/libeffects/factory/ |
D | EffectsXmlConfigLoader.cpp | 190 char buff[40]; member 198 uuidToString(&uuid, str.buff, sizeof(str.buff)); 199 return str.buff;
|
/frameworks/base/core/java/com/android/internal/widget/remotecompose/core/ |
D | RemoteComposeBuffer.java | 758 byte[] buff = new byte[32 * 1024]; // moderate size buff to start in readAllBytes() 761 int ret = is.read(buff, red, buff.length - red); in readAllBytes() 764 return Arrays.copyOf(buff, red); in readAllBytes() 767 if (red == buff.length) { in readAllBytes() 768 buff = Arrays.copyOf(buff, buff.length * 2); in readAllBytes()
|
/frameworks/base/services/core/java/com/android/server/input/ |
D | InputShellCommand.java | 372 final StringBuilder buff = new StringBuilder(text); in sendText() local 374 for (int i = 0; i < buff.length(); i++) { in sendText() 377 if (buff.charAt(i) == 's') { in sendText() 378 buff.setCharAt(i, ' '); in sendText() 379 buff.deleteCharAt(--i); in sendText() 382 if (buff.charAt(i) == '%') { in sendText() 387 final char[] chars = buff.toString().toCharArray(); in sendText()
|
/frameworks/opt/setupwizard/tools/docs/ |
D | doclava.jar | ... .io.BufferedReader br
String s
char[] buff
boolean instag
public void startCDATA ()
public static void ... |
/frameworks/av/media/libmedia/ |
D | MediaProfiles.cpp | 1239 void *buff = ::XML_GetBuffer(parser, BUFF_SIZE); in createInstanceFromXmlFile() local 1240 if (buff == NULL) { in createInstanceFromXmlFile() 1247 int bytes_read = ::fread(buff, 1, BUFF_SIZE, fp); in createInstanceFromXmlFile()
|
/frameworks/base/services/core/jni/ |
D | com_android_server_utils_AnrTimer.cpp | 105 struct stat buff; in processExists() local 106 return stat(path, &buff) == 0; in processExists()
|
/frameworks/base/cmds/bootanimation/ |
D | BootAnimation.cpp | 1943 char buff[BUFF_LEN] __attribute__ ((aligned(__alignof__(struct inotify_event))));; in doThreadLoop() local 1944 ssize_t length = read(mInotifyFd, buff, BUFF_LEN); in doThreadLoop() 1953 for (char* ptr = buff; ptr < buff + length; ptr += sizeof(struct inotify_event) + event->len) { in doThreadLoop()
|
/frameworks/av/media/libstagefright/xmlparser/ |
D | MediaCodecsXmlParser.cpp | 552 void *buff = ::XML_GetBuffer(mParser.get(), BUFF_SIZE); in parseXmlFile() local 553 if (buff == nullptr) { in parseXmlFile() 559 int bytes_read = ::fread(buff, 1, BUFF_SIZE, file); in parseXmlFile()
|
/frameworks/base/libs/androidfw/ |
D | ResourceTypes.cpp | 7609 char buff[2]; in normalizeForOutput() local 7610 buff[1] = '\0'; in normalizeForOutput() 7626 buff[0] = *input; in normalizeForOutput() 7627 ret += buff; in normalizeForOutput()
|