Home
last modified time | relevance | path

Searched refs:buff (Results 1 – 11 of 11) sorted by relevance

/frameworks/av/media/libaudioclient/tests/
Dtrack_test_output_v1.0_ref_walleye.txt9 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 …]
/frameworks/base/core/java/android/database/
DCursorWindow.java775 StringBuilder buff = new StringBuilder(); in printStats() local
793 buff.append(" (# cursors opened by "); in printStats()
796 buff.append("this proc="); in printStats()
798 buff.append("pid " + pid + "="); in printStats()
801 buff.append(num + ")"); in printStats()
805 String s = (buff.length() > 980) ? buff.substring(0, 980) : buff.toString(); in printStats()
/frameworks/compile/slang/
Dslang_rs_reflect_utils.cpp133 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/cmds/input/src/com/android/commands/input/
DInput.java150 final StringBuffer buff = new StringBuffer(text); in sendText() local
152 for (int i = 0; i < buff.length(); i++) { in sendText()
155 if (buff.charAt(i) == 's') { in sendText()
156 buff.setCharAt(i, ' '); in sendText()
157 buff.deleteCharAt(--i); in sendText()
160 if (buff.charAt(i) == '%') { in sendText()
165 final char[] chars = buff.toString().toCharArray(); in sendText()
/frameworks/base/core/tests/coretests/src/android/database/sqlite/
DSQLiteCursorTest.java78 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/
DEffectsXmlConfigLoader.cpp191 char buff[40]; member
199 uuidToString(&uuid, str.buff, sizeof(str.buff));
200 return str.buff;
/frameworks/layoutlib/bridge/src/android/view/shadow/
DTriangleBuffer.java107 private static void triangleZBuffMin(int[] buff, int w, int h, float fx3, in triangleZBuffMin() argument
204 buff[point] = ((int) (zval * 255)) << 24; in triangleZBuffMin()
/frameworks/base/cmds/bootanimation/
DBootAnimation.cpp1219 char buff[BUFF_LEN] __attribute__ ((aligned(__alignof__(struct inotify_event))));; in doThreadLoop() local
1220 ssize_t length = read(mInotifyFd, buff, BUFF_LEN); in doThreadLoop()
1229 for (char* ptr = buff; ptr < buff + length; ptr += sizeof(struct inotify_event) + event->len) { in doThreadLoop()
/frameworks/av/media/libmedia/
DMediaProfiles.cpp940 void *buff = ::XML_GetBuffer(parser, BUFF_SIZE); in createInstanceFromXmlFile() local
941 if (buff == NULL) { in createInstanceFromXmlFile()
948 int bytes_read = ::fread(buff, 1, BUFF_SIZE, fp); in createInstanceFromXmlFile()
/frameworks/av/media/libstagefright/xmlparser/
DMediaCodecsXmlParser.cpp527 void *buff = ::XML_GetBuffer(mParser.get(), BUFF_SIZE); in parseXmlFile() local
528 if (buff == nullptr) { in parseXmlFile()
534 int bytes_read = ::fread(buff, 1, BUFF_SIZE, file); in parseXmlFile()
/frameworks/base/libs/androidfw/
DResourceTypes.cpp7331 char buff[2]; in normalizeForOutput() local
7332 buff[1] = '\0'; in normalizeForOutput()
7348 buff[0] = *input; in normalizeForOutput()
7349 ret += buff; in normalizeForOutput()