/hardware/invensense/mlsdk/platform/include/ |
i2c.h | 113 int I2CSetBufferSize (unsigned short bufferSize);
|
/hardware/libhardware/include/hardware/ |
bt_hh.h | 163 bt_status_t (*get_report)(bt_bdaddr_t *bd_addr, bthh_report_type_t reportType, uint8_t reportId, int bufferSize);
|
/hardware/libhardware_legacy/audio/ |
AudioDumpInterface.cpp | 318 size_t AudioStreamOutDump::bufferSize() const 320 if (mFinalStream != 0 ) return mFinalStream->bufferSize(); 521 size_t AudioStreamInDump::bufferSize() const 523 if (mFinalStream != 0 ) return mFinalStream->bufferSize();
|
AudioHardwareStub.cpp | 147 snprintf(buffer, SIZE, "\tbuffer size: %d\n", bufferSize()); 191 snprintf(buffer, SIZE, "\tbuffer size: %d\n", bufferSize());
|
/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/video/dec/ |
Exynos_OMX_Vdec.h | 72 int bufferSize[MAX_BUFFER_PLANE]; /* buffer alloc size */
|
/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/video/enc/ |
Exynos_OMX_Venc.h | 76 int bufferSize[MAX_BUFFER_PLANE]; /* buffer alloc size */
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
quotearg.h | 222 /* Place into buffer BUFFER (of size BUFFERSIZE) a quoted version of 227 If BUFFERSIZE is too small to store the output string, return the 228 value that would have been returned had BUFFERSIZE been large enough. 233 size_t quotearg_buffer (char *buffer, size_t buffersize,
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
scc.h | 129 unsigned int bufsize; /* used buffersize */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
scc.h | 129 unsigned int bufsize; /* used buffersize */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
scc.h | 129 unsigned int bufsize; /* used buffersize */
|
/system/core/include/corkscrew/ |
backtrace.h | 109 const backtrace_symbol_t* symbol, char* buffer, size_t bufferSize);
|
/dalvik/vm/ |
Profile.cpp | 361 void dvmMethodTraceStart(const char* traceFileName, int traceFd, int bufferSize, 366 assert(bufferSize > 0); 375 ALOGI("TRACE STARTED: '%s' %dKB", traceFileName, bufferSize / 1024); 383 state->buf = (u1*) malloc(bufferSize); 405 memset(state->buf, (char)FILL_PATTERN, bufferSize); 408 state->bufferSize = bufferSize; 763 if (newOffset > state->bufferSize) {
|
/external/aac/libMpegTPEnc/include/ |
mpegFileWrite.h | 122 * \param bufferSize Size of buffer to write in bytes. 127 int bufferSize
|
/external/srec/srec/Recognizer/src/ |
Recognizer.c | 243 ESR_ReturnCode SR_RecognizerPutAudio(SR_Recognizer* self, asr_int16_t* buffer, size_t* bufferSize, 260 return self->putAudio(self, buffer, bufferSize, isLast);
|
/frameworks/base/graphics/java/android/renderscript/ |
ProgramVertexFixedFunction.java | 225 int bufferSize = constInputType.getElement().getBytesSize()* 227 mIOBuffer = new FieldPacker(bufferSize);
|
/external/icu4c/i18n/ |
bmsearch.cpp | 75 int32_t bufferSize; 95 : bufferSize(0), bufferMin(0), bufferMax(0), 113 bufferSize = patternLength + (2 * maxExpansion) + 4; 115 ceb = NEW_ARRAY(CEI, bufferSize); 186 if (bufferMax >= bufferSize || offset != bufferMax) { 236 if (bufferMax >= bufferSize || offset != bufferMax) {
|
/external/webkit/Source/WebCore/plugins/ |
PluginDatabase.cpp | 483 size_t bufferSize = 0; 488 bufferSize += readFromFile(file, buffer.data() + bufferSize, bufferCapacity - bufferSize); 489 if (bufferSize == bufferCapacity) { 501 buffer.shrink(bufferSize);
|
/external/skia/legacy/src/ports/ |
SkFontHost_win.cpp | 75 static const uint16_t BUFFERSIZE = (16384 - 32); 76 static uint8_t glyphbuf[BUFFERSIZE]; 963 uint32_t total_size = GetGlyphOutlineW(fDDC, glyph.fID, GGO_NATIVE | GGO_GLYPH_INDEX, &gm, BUFFERSIZE, glyphbuf, &fMat22); 966 total_size = GetGlyphOutlineW(fDDC, glyph.fID, GGO_NATIVE | GGO_GLYPH_INDEX, &gm, BUFFERSIZE, glyphbuf, &fMat22); [all...] |
/external/tinyxml2/ |
tinyxml2.cpp | 371 void XMLUtil::ToStr( int v, char* buffer, int bufferSize )
373 TIXML_SNPRINTF( buffer, bufferSize, "%d", v );
377 void XMLUtil::ToStr( unsigned v, char* buffer, int bufferSize )
379 TIXML_SNPRINTF( buffer, bufferSize, "%u", v );
383 void XMLUtil::ToStr( bool v, char* buffer, int bufferSize )
385 TIXML_SNPRINTF( buffer, bufferSize, "%d", v ? 1 : 0 );
389 void XMLUtil::ToStr( float v, char* buffer, int bufferSize )
391 TIXML_SNPRINTF( buffer, bufferSize, "%f", v );
395 void XMLUtil::ToStr( double v, char* buffer, int bufferSize )
397 TIXML_SNPRINTF( buffer, bufferSize, "%f", v ); [all...] |
/frameworks/base/core/java/android/os/ |
Debug.java | 459 * @param bufferSize The maximum amount of trace data we gather. If not given, it defaults to 8MB. 461 public static void startMethodTracing(String traceName, int bufferSize) { 462 startMethodTracing(traceName, bufferSize, 0); 486 * @param bufferSize The maximum amount of trace data we gather. If not given, it defaults to 8MB. 488 public static void startMethodTracing(String traceName, int bufferSize, 497 VMDebug.startMethodTracing(pathName, bufferSize, flags); 510 int bufferSize, int flags) { 511 VMDebug.startMethodTracing(traceName, fd, bufferSize, flags); 521 public static void startMethodTracingDdms(int bufferSize, int flags) { 522 VMDebug.startMethodTracingDdms(bufferSize, flags) [all...] |
/external/skia/src/ports/ |
SkFontHost_win.cpp | 139 static const uint16_t BUFFERSIZE = (16384 - 32); 140 static uint8_t glyphbuf[BUFFERSIZE]; [all...] |
/external/icu4c/test/cintltst/ |
capitst.c | 665 int32_t bufferSize = U_COL_SAFECLONE_BUFFERSIZE; 694 if (0 != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, 0)) 700 if (0 != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err) || err != U_MEMORY_ALLOCATION_ERROR) 709 log_err("FAIL: Cloned Collator failed to deal correctly with null bufferSize pointer\n"); 714 bufferSize = 0; 715 if (0 != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err) || U_FAILURE(err) || bufferSize <= 0) 720 if (U_COL_SAFECLONE_BUFFERSIZE < bufferSize) 725 if (0 == (col = ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err)) || U_FAILURE(err)) 731 --bufferSize; [all...] |
/external/webkit/Source/JavaScriptCore/wtf/text/ |
WTFString.cpp | 356 int bufferSize = 256; 357 buffer.resize(bufferSize); 359 int written = vsnprintf(buffer.data(), bufferSize, format, args); 367 bufferSize <<= 1; 368 buffer.resize(bufferSize);
|
/external/webrtc/src/modules/interface/ |
module_common_types.h | 310 bufferSize(0) 365 bufferSize = data.payloadSize; 371 if (bufferSize < size) 377 bufferSize = size; 391 WebRtc_UWord32 bufferSize;
|
/external/icu4c/io/ |
ustdio.c | 406 int32_t bufferSize; 458 bufferSize = UFILE_UCHARBUFFER_SIZE; 464 f->fUCBuffer + bufferSize,
|