HomeSort by relevance Sort by last modified time
    Searched refs:buffer (Results 2001 - 2025 of 5558) sorted by null

<<81828384858687888990>>

  /external/sonivox/arm-hybrid-22k/lib_src/
eas_imelody.c 114 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "PutBackChar '%c'\n", pData->buffer[pData->index]); */ }
143 static EAS_RESULT IMY_ReadLine (EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE fileHandle, EAS_I8 *buffer, EAS_I32 *pStartLine);
144 static EAS_INT IMY_ParseLine (EAS_I8 *buffer, EAS_U8 *pIndex);
191 EAS_I8 buffer[MAX_LINE_SIZE+1]; local
200 if (IMY_ReadLine(pEASData->hwInstData, fileHandle, buffer, NULL) != EAS_SUCCESS)
204 if (IMY_ParseLine(buffer, &index) == TOKEN_BEGIN)
436 IMY_ReadLine(pEASData->hwInstData, pData->fileHandle, pData->buffer, &pData->startLine);
    [all...]
  /external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/
EASLib.c 79 EAS_U8 buffer[EAS_FILE_BUFFER_SIZE]; member in struct:eas_hw_file_tag
87 EAS_U8 *buffer; member in struct:eas_hw_file_tag
126 // buffer to hold the data
358 // check if there is any data in the buffer
411 // Check if our buffer is full
415 // Call the synth the render a buffer
432 // Check if our buffer is full
859 * Fill buffer from file
870 file->bytesInBuffer = (EAS_I32) fread(file->buffer, 1, EAS_FILE_BUFFER_SIZE, file->pFile);
902 /* try to fulfill request from buffer */
    [all...]
EASLibVst.c 77 EAS_U8 buffer[EAS_FILE_BUFFER_SIZE]; member in struct:eas_hw_file_tag
85 EAS_U8 *buffer; member in struct:eas_hw_file_tag
554 * Fill buffer from file
565 file->bytesInBuffer = (EAS_I32) fread(file->buffer, 1, EAS_FILE_BUFFER_SIZE, file->pFile);
597 /* try to fulfill request from buffer */
600 /* how many bytes can we get from buffer? */
605 /* copy data from buffer */
606 EAS_HWMemCpy(p, &file->buffer[file->readIndex], temp);
613 /* don't refill buffer if request is bigger than buffer */
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_imelody.c 114 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "PutBackChar '%c'\n", pData->buffer[pData->index]); */ }
143 static EAS_RESULT IMY_ReadLine (EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE fileHandle, EAS_I8 *buffer, EAS_I32 *pStartLine);
144 static EAS_INT IMY_ParseLine (EAS_I8 *buffer, EAS_U8 *pIndex);
191 EAS_I8 buffer[MAX_LINE_SIZE+1]; local
200 if (IMY_ReadLine(pEASData->hwInstData, fileHandle, buffer, NULL) != EAS_SUCCESS)
204 if (IMY_ParseLine(buffer, &index) == TOKEN_BEGIN)
445 IMY_ReadLine(pEASData->hwInstData, pData->fileHandle, pData->buffer, &pData->startLine);
    [all...]
  /external/stlport/src/
ios.cpp 210 char buffer[256];
212 strcpy(buffer, "ios failure: rdstate = 0x");
213 ptr = __write_integer(buffer+strlen(buffer), ios_base::hex, __STATIC_CAST(unsigned long,_M_iostate));
215 ptr = __write_integer(buffer+strlen(buffer), ios_base::hex, __STATIC_CAST(unsigned long,_M_exception_mask));
217 arg = buffer;
  /external/v8/src/
scanner-character-streams.cc 44 // Initialize buffer as being empty. First read will fill the buffer.
67 // In pushback mode, the end of the buffer contains pushback,
68 // and the start of the buffer (from buffer start to pushback_limit_)
71 // start of the buffer.
99 // start of the buffer, use those.
111 // in the buffer before the pushback_limit_ point).
231 // in the buffer.
232 static inline void Utf8CharacterBack(const byte* buffer, unsigned* cursor)
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
VertexDataManager.cpp 8 // runs the Buffer translation process.
14 #include "libGLESv2/Buffer.h"
55 Buffer *buffer = attribute.mBoundBuffer.get(); local
71 ERR("Failed to map vertex buffer.");
77 if (buffer)
81 input = static_cast<const char*>(buffer->data()) + offset;
115 // Determine the required storage size per used buffer
118 Buffer *buffer = attribs[i].mBoundBuffer.get() local
142 Buffer *buffer = attribs[i].mBoundBuffer.get(); local
176 Buffer *buffer = attribs[i].mBoundBuffer.get(); local
195 Buffer *buffer = attribs[i].mBoundBuffer.get(); local
577 void *buffer = NULL; local
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
RemoteObject.js 217 var buffer = prefix; variable
221 if (buffer.length + itemDescription.length > previewChars) {
222 buffer += ",\u2026";
226 buffer += ", ";
227 buffer += itemDescription;
229 buffer += suffix;
230 return buffer;
  /external/webkit/Source/WebCore/platform/brew/
FileSystemBrew.cpp 93 Vector<UChar, 1024> buffer;
95 buffer.append(path.characters(), path.length());
97 if (buffer.last() != L'/' && component[0] != L'/')
98 buffer.append(L'/');
100 buffer.append(component.characters(), component.length());
102 return String(buffer.data(), buffer.size());
114 // Get the buffer size required to resolve the path.
  /frameworks/base/core/jni/
android_util_Process.cpp 423 char buffer[256]; local
424 const int len = read(fd, buffer, sizeof(buffer)-1);
431 buffer[len] = 0;
436 char* p = buffer;
533 char* buffer = (char*)malloc(BUFFER_SIZE); local
534 int len = read(fd, buffer, BUFFER_SIZE-1);
541 buffer[len] = 0;
545 char* p = buffer;
578 free(buffer);
822 char buffer[256]; local
    [all...]
  /frameworks/base/services/java/com/android/server/am/
TransferPipe.java 183 final byte[] buffer = new byte[1024];
196 while ((size=fis.read(buffer)) > 0) {
199 fos.write(buffer, 0, size);
203 if (buffer[i] != '\n') {
205 fos.write(buffer, start, i-start);
214 } while (i<size && buffer[i] != '\n');
221 fos.write(buffer, start, size-start);
  /frameworks/base/services/tests/servicestests/src/com/android/server/
AccessibilityManagerTest.java 251 public void appendTo(StringBuffer buffer) {
252 buffer.append("sendAccessibilityEvent()");
253 buffer.append(" with event type \"");
254 buffer.append(mExpectedEvent.getEventType());
255 buffer.append("\"");
270 public void appendTo(StringBuffer buffer) {
271 buffer.append("addClient() with any IAccessibilityManagerClient");
  /libcore/luni/src/main/java/java/util/
Scanner.java 101 private CharBuffer buffer; field in class:Scanner
117 // The length of the buffer.
320 * input may be cached if no line terminator exists in the buffer.
363 int oldLimit = buffer.limit();
365 buffer.limit(horizonLineSeparator + terminatorLength);
384 buffer.limit(oldLimit);
393 buffer.limit(oldLimit);
400 buffer.limit(oldLimit);
480 // If horizon == 0, consider horizon as always outside buffer.
482 // First, try to find pattern within buffer. If pattern can not b
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
GenericSignatureParser.java 90 * and it's set only when a scan is issued at the end of the buffer.
94 char[] buffer; field in class:GenericSignatureParser
104 this.buffer = input.toCharArray();
443 if (pos < buffer.length) {
444 symbol = buffer[pos];
483 char ch = buffer[pos];
486 identBuf.append(buffer[pos]);
493 } while (pos != buffer.length);
  /ndk/sources/cxx-stl/stlport/src/
ios.cpp 212 char buffer[256];
214 strcpy(buffer, "ios failure: rdstate = 0x");
215 ptr = __write_integer(buffer+strlen(buffer), ios_base::hex, __STATIC_CAST(unsigned long,_M_iostate));
217 ptr = __write_integer(buffer+strlen(buffer), ios_base::hex, __STATIC_CAST(unsigned long,_M_exception_mask));
219 arg = buffer;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringProposal.java 85 IBuffer buffer = mContext.getCompilationUnit().getBuffer(); local
87 String string = buffer.getText(start, length);
99 char c = buffer.getChar(i);
105 String linePrefix = buffer.getText(i + 1, start - (i + 1)).trim();
109 while (i < buffer.getLength()) {
110 char c = buffer.getChar(i);
116 String lineSuffix = buffer.getText(start + length, i - (start + length));
  /system/core/include/system/
window.h 127 /* The minimum number of buffers that must remain un-dequeued after a buffer
129 * override the number of buffers and if a buffer has since been queued.
136 * Note that this value does NOT apply until a single buffer has been
140 * 2. Set the buffer count to N + M
147 /* Check whether queueBuffer operations on the ANativeWindow send the buffer
153 * This can be used to determine whether protected buffer content should be
192 * 1. Before dequeuing a buffer, the GL driver (or any other ANW client)
201 * 3. The GL driver dequeues a buffer of the new pre-rotated size.
203 * 4. The GL driver renders to the buffer such that the image is
208 * inverse transformation to the buffer it just rendered
    [all...]
  /system/vold/
Loop.cpp 81 int Loop::lookupActive(const char *id, char *buffer, size_t len) {
86 memset(buffer, 0, len);
123 strncpy(buffer, filename, len -1);
254 struct asec_superblock buffer; local
272 memset(&buffer, 0, sizeof(struct asec_superblock));
279 if (read(fd, &buffer, sizeof(struct asec_superblock)) != sizeof(struct asec_superblock)) {
290 memcpy(sb, &buffer, sizeof(struct asec_superblock));
  /external/icu4c/test/cintltst/
cnormtst.c 974 UChar buffer[100]; local
1035 UChar buffer[4]; local
1183 UChar buffer[4]; local
1331 UChar buffer[8]; local
    [all...]
  /external/opencv/cvaux/src/
cveigenobjects.cpp 213 int ioFlags, int ioBufSize, uchar* buffer,
227 if( ioFlags && buffer == NULL )
243 nio = ioBufSize / n; /* number of objects in buffer */
257 uchar *bu1 = buffer, *bu2;
273 bu1 = buffer;
299 bu1 = buffer;
432 // ioBufSize - input/output buffer size
455 // 2. If ioBufSize = 0, or it's too large, the function dermines buffer size
482 void *buffer = 0; local
539 /* Buffer size determination *
985 float *buffer; local
1062 float *buffer = NULL; local
    [all...]
  /device/lge/mako/camera/QCamera/HAL/core/src/
QCameraHWI_Mem.cpp 144 "buffer size %d",
182 LOGV("register_buf: reg = %d buffer = %p",
219 LOGV("register_buf: reg = %d buffer = %p", !register_buffer,
243 "%d frames @ %d bytes, buffer size %d",
299 //buffer as active and pmem type as PMEM_VIDEO_VPE
305 //will lookup the PMEM_VIDEO_VPE buffer and give it as o/p of VPE and
379 char buffer[SIZE]; local
382 snprintf(buffer, 255, "QualcommCameraHardware::AshmemPool::dump\n");
383 result.append(buffer);
385 snprintf(buffer, 255, "mem pool name (%s)\n", mName)
    [all...]
  /device/lge/mako/camera/
QCameraHWI_Mem.cpp 144 "buffer size %d",
184 ALOGV("register_buf: reg = %d buffer = %p",
220 ALOGV("register_buf: reg = %d buffer = %p", !register_buffer,
245 "%d frames @ %d bytes, buffer size %d",
301 //buffer as active and pmem type as PMEM_VIDEO_VPE
307 //will lookup the PMEM_VIDEO_VPE buffer and give it as o/p of VPE and
382 char buffer[SIZE]; local
385 snprintf(buffer, 255, "QualcommCameraHardware::AshmemPool::dump\n");
386 result.append(buffer);
388 snprintf(buffer, 255, "mem pool name (%s)\n", mName)
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_LlcpUtils.c 60 type = psRawData->buffer[offset];
61 length = psRawData->buffer[offset+1];
72 psValueBuffer->buffer = psRawData->buffer + offset;
111 psValueBuffer->buffer[offset] = type;
115 psValueBuffer->buffer[offset] = length;
121 psValueBuffer->buffer[offset] = pValue[i];
158 psValueBuffer->buffer[nTlvOffset+1] += length;
161 memcpy(psValueBuffer->buffer + offset, pValue, length);
190 * Initializes a Fifo Cyclic Buffer to point to some allocated memory
    [all...]
  /external/qemu/slirp/
tftp.c 106 char buffer[1024]; local
109 n = snprintf(buffer, sizeof(buffer), "%s/%s",
111 if (n >= sizeof(buffer))
114 fd = open(buffer, O_RDONLY | O_BINARY);
374 char buffer[1024]; local
377 len = snprintf(buffer, sizeof(buffer), "%s/%s",
380 if (stat(buffer, &stat_p) == 0)
  /external/qemu/slirp-android/
tftp.c 106 char buffer[1024]; local
109 n = snprintf(buffer, sizeof(buffer), "%s/%s",
111 if (n >= sizeof(buffer))
114 fd = open(buffer, O_RDONLY | O_BINARY);
380 char buffer[1024]; local
383 len = snprintf(buffer, sizeof(buffer), "%s/%s",
386 if (stat(buffer, &stat_p) == 0)

Completed in 1332 milliseconds

<<81828384858687888990>>