/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
ndr64types.h | 557 NDR64_UINT32 BufferSize; 567 NDR64_UINT32 BufferSize;
|
routprot.h | 178 typedef DWORD (WINAPI *PGET_INTERFACE_INFO)(ULONG InterfaceIndex,PVOID InterfaceInfo,PULONG BufferSize,PULONG StructureVersion,PULONG StructureSize,PULONG StructureCount); 183 typedef DWORD (WINAPI *PGET_GLOBAL_INFO)(PVOID GlobalInfo,PULONG BufferSize,PULONG StructureVersion,PULONG StructureSize,PULONG StructureCount);
|
rpcdcep.h | 195 RPCRTAPI RPC_STATUS RPC_ENTRY I_RpcServerInqLocalConnAddress(RPC_BINDING_HANDLE Binding,void *Buffer,unsigned __LONG32 *BufferSize,unsigned __LONG32 *AddressFormat); 223 unsigned __LONG32 BufferSize;
|
ntsecpkg.h | 392 typedef VOID (NTAPI LSA_PROTECT_MEMORY)(PVOID Buffer,ULONG BufferSize); 453 NTSTATUS CredMarshalTargetInfo (PCREDENTIAL_TARGET_INFORMATIONW InTargetInfo,PUSHORT *Buffer,PULONG BufferSize); 454 NTSTATUS CredUnmarshalTargetInfo (PUSHORT Buffer,ULONG BufferSize,PCREDENTIAL_TARGET_INFORMATIONW *RetTargetInfo,PULONG RetActualSize); 572 typedef NTSTATUS (NTAPI SpSetCredentialsAttributesFn)(LSA_SEC_HANDLE CredentialHandle,ULONG CredentialAttribute,PVOID Buffer,ULONG BufferSize); 583 typedef NTSTATUS (NTAPI SpSetContextAttributesFn)(LSA_SEC_HANDLE ContextHandle,ULONG ContextAttribute,PVOID Buffer,ULONG BufferSize); [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/audio/ |
Biquad.cpp | 59 int bufferSize; 60 ippsIIRGetStateSize64f_BiQuad_32f(1, &bufferSize); 61 m_ippInternalBuffer = ippsMalloc_8u(bufferSize); 200 int bufferSize; 201 ippsIIRGetStateSize64f_BiQuad_32f(1, &bufferSize); 202 ippsZero_8u(m_ippInternalBuffer, bufferSize);
|
/external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/ |
ByteStringTest.java | 427 for (int bufferSize : bufferSizes) { 430 ByteString.Output output = ByteString.newOutput(bufferSize); 449 for (int bufferSize : bufferSizes) { 450 ByteString.Output output = ByteString.newOutput(bufferSize); 470 for (int bufferSize : bufferSizes) { 473 ByteString.Output output = ByteString.newOutput(bufferSize);
|
/frameworks/base/core/java/android/bluetooth/ |
BluetoothInputDevice.java | 141 /* int reportType, int reportType, int bufferSize */ 592 * @param bufferSize Report receiving buffer size 597 public boolean getReport(BluetoothDevice device, byte reportType, byte reportId, int bufferSize) { 598 if (VDBG) log("getReport(" + device + "), reportType=" + reportType + " reportId=" + reportId + "bufferSize=" + bufferSize); 601 return mService.getReport(device, reportType, reportId, bufferSize);
|
/hardware/ti/omap4-aah/camera/OMXCameraAdapter/ |
OMXCapabilities.cpp | 387 size_t bufferSize) 404 strncat(buffer, PARAM_SEP, bufferSize - 1); 406 strncat(buffer, cap[i].param, bufferSize - 1); 476 size_t bufferSize) 492 strncat(buffer, PARAM_SEP, bufferSize - 1); 494 strncat(buffer, cap[i].param, bufferSize - 1); 508 size_t bufferSize) 522 strncat(buffer, PARAM_SEP, bufferSize - 1); 524 strncat(buffer, cap[i].param, bufferSize - 1); 537 size_t bufferSize) [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...] |
/external/chromium_org/native_client_sdk/src/examples/demo/nacl_io_demo/ |
handlers.c | 1067 PARAM_INT(1, buffersize); 1069 if (buffersize < 0 || buffersize > 65 * 1024) { 1071 PrintfToNewString("recv buffersize must be between 0 and 65k."); 1075 char* buffer = alloca(buffersize); 1076 memset(buffer, 0, buffersize); 1077 int result = recv(sock, buffer, buffersize, 0);
|
/external/deqp/modules/gles31/functional/ |
es31fDrawTests.cpp | [all...] |
es31fComputeShaderBuiltinVarTests.cpp | 218 const deUint32 bufferSize = numInvocations*outVarInfo.arrayStride; 227 gl.bufferData(GL_SHADER_STORAGE_BUFFER, (glw::GLsizeiptr)bufferSize, DE_NULL, GL_STREAM_READ); 239 const void* ptr = gl.mapBufferRange(GL_SHADER_STORAGE_BUFFER, 0, bufferSize, GL_MAP_READ_BIT);
|
/external/icu/icu4c/source/test/cintltst/ |
capitst.c | 647 int32_t bufferSize = U_COL_SAFECLONE_BUFFERSIZE; 671 if (NULL != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, NULL)) 677 if (NULL != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err) || err != U_MEMORY_ALLOCATION_ERROR) 686 log_err("FAIL: Cloned Collator failed to deal correctly with null bufferSize pointer\n"); 692 bufferSize = 0; 693 if (NULL != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err) || 694 U_FAILURE(err) || bufferSize <= 0) 699 if (U_COL_SAFECLONE_BUFFERSIZE < bufferSize) 704 if (NULL == (col = ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err)) || U_FAILURE(err)) 710 if (bufferSize > 1) [all...] |
/frameworks/base/core/java/android/os/ |
Debug.java | 609 * @param bufferSize The maximum amount of trace data we gather. If not given, it defaults to 8MB. 611 public static void startMethodTracing(String traceName, int bufferSize) { 612 startMethodTracing(traceName, bufferSize, 0); 637 * @param bufferSize The maximum amount of trace data we gather. If not given, it defaults to 8MB. 640 public static void startMethodTracing(String traceName, int bufferSize, 642 VMDebug.startMethodTracing(fixTraceName(traceName), bufferSize, flags, false, 0); 656 * @param bufferSize The maximum amount of trace data we gather. If not given, it defaults to 8MB. 660 int bufferSize, int intervalUs) { 661 VMDebug.startMethodTracing(fixTraceName(traceName), bufferSize, 0, true, intervalUs); 688 int bufferSize, int flags) [all...] |
/external/chromium_org/third_party/icu/source/test/cintltst/ |
capitst.c | 667 int32_t bufferSize = U_COL_SAFECLONE_BUFFERSIZE; 696 if (0 != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, 0)) 702 if (0 != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err) || err != U_MEMORY_ALLOCATION_ERROR) 711 log_err("FAIL: Cloned Collator failed to deal correctly with null bufferSize pointer\n"); 716 bufferSize = 0; 717 if (0 != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err) || U_FAILURE(err) || bufferSize <= 0) 722 if (U_COL_SAFECLONE_BUFFERSIZE < bufferSize) 727 if (0 == (col = ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err)) || U_FAILURE(err)) 733 --bufferSize; [all...] |
/external/chromium_org/third_party/webrtc/modules/interface/ |
module_common_types.h | 307 bufferSize(0), 355 bufferSize = data.payloadSize; 360 if (bufferSize < size) { 365 bufferSize = size; 379 uint32_t 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/chromium_org/third_party/icu/source/io/ |
ustdio.c | 406 int32_t bufferSize; 458 bufferSize = UFILE_UCHARBUFFER_SIZE; 464 f->fUCBuffer + bufferSize,
|
/external/deqp/modules/egl/ |
teglQueryConfigTests.cpp | 413 const EGLint bufferSize = getValue(config, EGL_BUFFER_SIZE); 440 if (bufferSize != (redSize + greenSize + blueSize + alphaSize)) 460 if (bufferSize != (luminanceSize + alphaSize))
|
/external/icu/icu4c/source/io/ |
ustdio.c | 406 int32_t bufferSize; 458 bufferSize = UFILE_UCHARBUFFER_SIZE; 464 f->fUCBuffer + bufferSize,
|
/external/jsilver/src/com/google/clearsilver/jsilver/ |
JSilver.java | 127 int bufferSize = options.getInitialBufferSize(); 130 outputBufferProvider = new ThreadLocalOutputBufferProvider(bufferSize); 133 outputBufferProvider = new InstanceOutputBufferProvider(bufferSize);
|
/external/opencv/cv/src/ |
cvoptflowhs.cpp | 113 int BufferSize; 177 BufferSize = imageHeight * imageWidth; 179 II = (icvDerProductEx *) cvAlloc( BufferSize * sizeof( icvDerProductEx ));
|
/frameworks/av/media/libstagefright/codecs/hevcdec/ |
SoftHEVC.cpp | 403 uint32_t bufferSize = displaySizeY * 3 / 2; 404 mFlushOutBuffer = (uint8_t *)ivd_aligned_malloc(128, bufferSize); 406 ALOGE("Could not allocate flushOutputBuffer of size %zu", bufferSize);
|
/frameworks/base/core/java/android/net/http/ |
AndroidHttpClientConnection.java | 109 int buffersize = HttpConnectionParams.getSocketBufferSize(params); local 110 this.inbuffer = new SocketInputBuffer(socket, buffersize, params); 111 this.outbuffer = new SocketOutputBuffer(socket, buffersize, params);
|
/hardware/intel/img/psb_video/src/ |
pnw_hostcode.h | 118 IMG_UINT32 BufferSize; 160 IMG_INT32 BufferSize; /* Size of Buffer */ 183 * (GopSize/(BufferSize-InitialLevel))*256 */
|