/external/chromium_org/sdch/open-vcdiff/src/ |
vcdiff_main.cc | 51 // --buffersize is the maximum allowable size of a target window. 53 DEFINE_uint64(buffersize, 1 << 20, // 1 MB 102 // will not be smaller than the --buffersize option. If the function fails, 178 // input_buffer_ will be the value specified by the --buffersize option. 181 // --buffersize bytes in length. 601 if (!GetCommandLineFlagInfoOrDie("buffersize").is_default && 603 std::cerr << command_name << ": Option --buffersize cannot be 0"
|
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/ |
AudioContext.cpp | 358 PassRefPtrWillBeRawPtr<ScriptProcessorNode> AudioContext::createScriptProcessor(size_t bufferSize, ExceptionState& exceptionState) 361 return createScriptProcessor(bufferSize, 2, 2, exceptionState); 364 PassRefPtrWillBeRawPtr<ScriptProcessorNode> AudioContext::createScriptProcessor(size_t bufferSize, size_t numberOfInputChannels, ExceptionState& exceptionState) 367 return createScriptProcessor(bufferSize, numberOfInputChannels, 2, exceptionState); 370 PassRefPtrWillBeRawPtr<ScriptProcessorNode> AudioContext::createScriptProcessor(size_t bufferSize, size_t numberOfInputChannels, size_t numberOfOutputChannels, ExceptionState& exceptionState) 373 RefPtrWillBeRawPtr<ScriptProcessorNode> node = ScriptProcessorNode::create(this, m_destinationNode->sampleRate(), bufferSize, numberOfInputChannels, numberOfOutputChannels); 395 "buffer size (" + String::number(bufferSize)
|
AudioContext.h | 122 PassRefPtrWillBeRawPtr<ScriptProcessorNode> createScriptProcessor(size_t bufferSize, ExceptionState&); 123 PassRefPtrWillBeRawPtr<ScriptProcessorNode> createScriptProcessor(size_t bufferSize, size_t numberOfInputChannels, ExceptionState&); 124 PassRefPtrWillBeRawPtr<ScriptProcessorNode> createScriptProcessor(size_t bufferSize, size_t numberOfInputChannels, size_t numberOfOutputChannels, ExceptionState&);
|
/external/llvm/lib/Target/AArch64/ |
AArch64SchedA57.td | 27 def A57UnitB : ProcResource<1> { let BufferSize = 8; } // Type B micro-ops 28 def A57UnitI : ProcResource<2> { let BufferSize = 8; } // Type I micro-ops 29 def A57UnitM : ProcResource<1> { let BufferSize = 8; } // Type M micro-ops 30 def A57UnitL : ProcResource<1> { let BufferSize = 8; } // Type L micro-ops 31 def A57UnitS : ProcResource<1> { let BufferSize = 8; } // Type S micro-ops 32 def A57UnitX : ProcResource<1> { let BufferSize = 8; } // Type X micro-ops 33 def A57UnitW : ProcResource<1> { let BufferSize = 8; } // Type W micro-ops
|
/frameworks/native/libs/input/ |
InputTransport.cpp | 132 int bufferSize = SOCKET_BUFFER_SIZE; 133 setsockopt(sockets[0], SOL_SOCKET, SO_SNDBUF, &bufferSize, sizeof(bufferSize)); 134 setsockopt(sockets[0], SOL_SOCKET, SO_RCVBUF, &bufferSize, sizeof(bufferSize)); 135 setsockopt(sockets[1], SOL_SOCKET, SO_SNDBUF, &bufferSize, sizeof(bufferSize)); 136 setsockopt(sockets[1], SOL_SOCKET, SO_RCVBUF, &bufferSize, sizeof(bufferSize)); [all...] |
/external/chromium_org/chrome/common/extensions/api/ |
bluetooth_socket.idl | 25 long? bufferSize; 97 long? bufferSize; 166 // The data received, with a maxium size of <code>bufferSize</code>.
|
serial.idl | 46 long? bufferSize; 98 // See <code>ConnectionOptions.bufferSize</code> 99 long bufferSize;
|
/external/chromium_org/extensions/common/api/ |
sockets_tcp.idl | 27 long? bufferSize; 97 long? bufferSize; 132 // The data received, with a maxium size of <code>bufferSize</code>.
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
SharedBuffer.cpp | 319 unsigned bufferSize = m_buffer.size(); 320 if (m_size > bufferSize) { 322 unsigned bytesLeft = m_size - bufferSize;
|
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/ |
vie_autotest_render.cc | 60 int bufferSize, 65 if (bufferSize != CalcBufferSize(webrtc::kI420, _width, _height)) { 67 bufferSize);
|
/external/clang/test/Analysis/ |
malloc.mm | 131 #define BufferSize 1000 135 myBuffer = (UniChar *)malloc(BufferSize * sizeof(UniChar)); 137 mutStr = CFStringCreateMutableWithExternalCharactersNoCopy(0, myBuffer, 0, BufferSize, kCFAllocatorNull); // expected-warning{{leak}}
|
/hardware/intel/img/psb_video/src/mrst/ |
lnc_hostcode.h | 89 IMG_UINT32 BufferSize; 129 IMG_INT32 BufferSize; /* Size of Buffer */ 149 IMG_UINT32 RCScaleFactor; /* A constant used in rate control = (GopSize/(BufferSize-InitialLevel))*256 */
|
/packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/hdr/ |
wsm.h | 141 * POST-Condition: handle refers to buffer bufName; BufferSize = size 317 * POST-Condition: wsmGetFreeSize = BufferSize - wsmGetUsedSize 341 * POST-Condition: usedSize = BufferSize - wsmGetFreeSize
|
/packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/sml/wsm/hdr/ |
wsm.h | 141 * POST-Condition: handle refers to buffer bufName; BufferSize = size 317 * POST-Condition: wsmGetFreeSize = BufferSize - wsmGetUsedSize 341 * POST-Condition: usedSize = BufferSize - wsmGetFreeSize
|
/hardware/intel/img/psb_video/src/ |
pnw_hostcode.c | [all...] |
/device/asus/fugu/libaudio/ |
AudioStreamOut.h | 51 size_t bufferSize() const { return mInputBufSize; }
|
/external/bison/lib/ |
quotearg.h | 284 /* Place into buffer BUFFER (of size BUFFERSIZE) a quoted version of 289 If BUFFERSIZE is too small to store the output string, return the 290 value that would have been returned had BUFFERSIZE been large enough. 295 size_t quotearg_buffer (char *buffer, size_t buffersize,
|
/external/chromium_org/media/audio/win/ |
waveout_output_win.cc | 68 inline size_t PCMWaveOutAudioOutputStream::BufferSize() const { 76 return reinterpret_cast<WAVEHDR*>(&buffers_[n * BufferSize()]); 120 if (BufferSize() * num_buffers_ > kMaxOpenBufferSize) 151 buffers_.reset(new char[BufferSize() * num_buffers_]);
|
/external/chromium_org/net/tools/balsa/ |
buffer_interface.h | 21 virtual int BufferSize() const = 0;
|
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
UnicodeUtilities.cpp | 303 size_t bufferSize = unorm_normalize(characters, length, UNORM_NFC, 0, buffer.data(), length, &status); 305 ASSERT(bufferSize); 307 buffer.resize(bufferSize); 313 unorm_normalize(characters, length, UNORM_NFC, 0, buffer.data(), bufferSize, &status);
|
/external/clang/include/clang/AST/ |
NestedNameSpecifier.h | 340 unsigned BufferSize; 348 : Representation(nullptr), Buffer(nullptr), BufferSize(0), 463 BufferSize = 0; 472 return std::make_pair(Buffer, BufferSize);
|
/external/clang/test/Profile/ |
objc-general.m | 29 count: (unsigned long) bufferSize;
|
/external/deqp/modules/glshared/ |
glsTextureBufferCase.hpp | 69 size_t bufferSize,
|
/external/kernel-headers/original/uapi/linux/ |
scc.h | 129 unsigned int bufsize; /* used buffersize */
|
/external/sonivox/arm-fm-22k/lib_src/ |
eas_parser.h | 45 EAS_I32 bufferSize;
|