HomeSort by relevance Sort by last modified time
    Searched refs:buffer (Results 576 - 600 of 9473) sorted by null

<<21222324252627282930>>

  /external/chromium_org/chrome/renderer/
static_v8_external_string_resource.h 13 // wraps a buffer. The buffer must outlive the v8 runtime instance this resource
18 explicit StaticV8ExternalAsciiStringResource(const base::StringPiece& buffer);
  /external/chromium_org/media/mp4/
es_descriptor_unittest.cc 15 uint8 buffer[] = { local
23 data.assign(buffer, buffer + sizeof(buffer));
35 uint8 buffer[] = { local
43 data.assign(buffer, buffer + sizeof(buffer));
54 uint8 buffer[] = { local
63 data.assign(buffer, buffer + sizeof(buffer))
74 uint8 buffer[] = { local
    [all...]
  /external/chromium_org/net/tools/quic/
quic_packet_writer.h 23 virtual int WritePacket(const char* buffer, size_t buf_len,
  /external/chromium_org/sandbox/win/src/
internal_types.h 27 // Encapsulates a pointer to a buffer and the size of the buffer.
30 CountedBuffer(void* buffer, uint32 size) : size_(size), buffer_(buffer) {}
36 void* Buffer() const {
49 explicit IPCInt(void* buffer) {
50 buffer_.vp = buffer;
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
bignum-dtoa.h 51 // The result should be interpreted as buffer * 10^(point-length).
52 // The buffer will be null-terminated.
60 // 'v' again. The buffer will choose the representation that is closest to
66 // Example: toFixed(0.001, 5) is allowed to return buffer="1", point=-2.
68 // buffer="2", point=0.
69 // Note: the length of the returned buffer has no meaning wrt the significance
77 // 'BignumDtoa' expects the given buffer to be big enough to hold all digits
80 Vector<char> buffer, int* length, int* point);
fast-dtoa.h 52 // The result should be interpreted as buffer * 10^(point - length).
58 // There will be *length digits inside the buffer followed by a null terminator.
63 // v == (double) (buffer * 10^(point - length)).
64 // The digits in the buffer are the shortest representation possible. E.g.
68 // digits might correctly yield 'v' when read again, the buffer will contain
71 // the buffer contains requested_digits digits.
72 // the difference v - (buffer * 10^(point-length)) is closest to zero for
76 // For both modes the buffer must be large enough to hold the result.
80 Vector<char> buffer,
  /external/chromium_org/third_party/angle_dx11/samples/gles2_book/Common/
esUtil_win.h 59 int WinTGALoad ( const char *fileName, char **buffer, int *width, int *height );
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot.h 41 hb_buffer_t *buffer,
  /external/chromium_org/third_party/icu/source/common/
ustrfmt.h 14 uprv_itou (UChar * buffer, int32_t capacity, uint32_t i, uint32_t radix, int32_t minwidth);
  /external/chromium_org/third_party/icu/source/tools/genrb/
rbutil.h 25 int32_t itostr(char * buffer, int32_t i, uint32_t radix, int32_t pad);
  /external/chromium_org/third_party/libwebp/dec/
buffer.c 40 static VP8StatusCode CheckDecBuffer(const WebPDecBuffer* const buffer) {
42 const WEBP_CSP_MODE mode = buffer->colorspace;
43 const int width = buffer->width;
44 const int height = buffer->height;
48 const WebPYUVABuffer* const buf = &buffer->u.YUVA;
68 const WebPRGBABuffer* const buf = &buffer->u.RGBA;
77 static VP8StatusCode AllocateBuffer(WebPDecBuffer* const buffer) {
78 const int w = buffer->width;
79 const int h = buffer->height;
80 const WEBP_CSP_MODE mode = buffer->colorspace
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/i915/drm/
i915_drm_winsys.h 45 * Buffer
62 i915_drm_buffer(struct i915_winsys_buffer *buffer)
64 return (struct i915_drm_buffer *)buffer;
68 intel_bo(struct i915_winsys_buffer *buffer)
70 return i915_drm_buffer(buffer)->bo;
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
clear.h 52 _mesa_ClearBufferiv(GLenum buffer, GLint drawbuffer, const GLint *value);
55 _mesa_ClearBufferuiv(GLenum buffer, GLint drawbuffer, const GLuint *value);
58 _mesa_ClearBufferfv(GLenum buffer, GLint drawbuffer, const GLfloat *value);
61 _mesa_ClearBufferfi(GLenum buffer, GLint drawbuffer,
  /external/chromium_org/third_party/skia/include/ports/
SkHarfBuzzFont.h 37 HB_Byte* buffer, HB_UInt* len);
  /external/chromium_org/third_party/skia/src/effects/
SkBlurDrawLooper.cpp 51 SkBlurDrawLooper::SkBlurDrawLooper(SkFlattenableReadBuffer& buffer)
52 : INHERITED(buffer) {
54 fDx = buffer.readScalar();
55 fDy = buffer.readScalar();
56 fBlurColor = buffer.readColor();
57 fBlur = buffer.readFlattenableT<SkMaskFilter>();
58 fColorFilter = buffer.readFlattenableT<SkColorFilter>();
59 fBlurFlags = buffer.readUInt() & kAll_BlurFlag;
67 void SkBlurDrawLooper::flatten(SkFlattenableWriteBuffer& buffer) const {
68 this->INHERITED::flatten(buffer);
    [all...]
  /external/chromium_org/ui/gl/
gl_image_android.cc 29 gfx::GpuMemoryBufferHandle buffer, gfx::Size size) {
33 switch (buffer.type) {
36 if (!image->Initialize(buffer))
43 if (!image->Initialize(buffer))
  /external/chromium_org/v8/src/
bignum-dtoa.h 48 // The result should be interpreted as buffer * 10^(point-length).
49 // The buffer will be null-terminated.
57 // 'v' again. The buffer will choose the representation that is closest to
63 // Example: toFixed(0.001, 5) is allowed to return buffer="1", point=-2.
65 // buffer="2", point=0.
66 // Note: the length of the returned buffer has no meaning wrt the significance
74 // 'BignumDtoa' expects the given buffer to be big enough to hold all digits
77 Vector<char> buffer, int* length, int* point);
dtoa.h 48 // Note that DoubleToAscii null-terminates its input. So the given buffer should
53 // The result should be interpreted as buffer * 10^(point-length).
59 // 'v' again. The buffer will choose the representation that is closest to
66 // Example: toFixed(0.001, 5) is allowed to return buffer="1", point=-2.
68 // toFixed(0.15, 2) thus returns buffer="2", point=0.
69 // The returned buffer may contain digits that would be truncated from the
76 // 'DoubleToAscii' expects the given buffer to be big enough to hold all digits
77 // and a terminating null-character. In SHORTEST-mode it expects a buffer of
81 Vector<char> buffer, int* sign, int* length, int* point);
fast-dtoa.h 49 // The result should be interpreted as buffer * 10^(point - length).
55 // There will be *length digits inside the buffer followed by a null terminator.
60 // v == (double) (buffer * 10^(point - length)).
61 // The digits in the buffer are the shortest representation possible. E.g.
65 // digits might correctly yield 'v' when read again, the buffer will contain
68 // the buffer contains requested_digits digits.
69 // the difference v - (buffer * 10^(point-length)) is closest to zero for
73 // For both modes the buffer must be large enough to hold the result.
77 Vector<char> buffer,
  /external/chromium_org/v8/src/extensions/
gc-extension.cc 51 static char buffer[50]; local
52 Vector<char> temp_vector(buffer, sizeof(buffer));
59 static GCExtension gc_extension(buffer);
  /external/elfutils/lib/
md5.h 51 char buffer[128] __attribute__ ((__aligned__ (__alignof__ (md5_uint32)))); member in struct:md5_ctx
65 starting at BUFFER.
67 extern void md5_process_block (const void *buffer, size_t len,
72 starting at BUFFER.
74 extern void md5_process_bytes (const void *buffer, size_t len,
77 /* Process the remaining bytes in the buffer and put result from CTX
101 /* Compute MD5 message digest for LEN bytes beginning at BUFFER. The
105 extern void *md5_buffer (const char *buffer, size_t len, void *resblock);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
SFTPInputStream.java 36 public int read(byte[] buffer, int offset, int len) throws IOException
38 int read = handle.getClient().read(handle, readOffset, buffer, offset, len);
61 byte[] buffer = new byte[1];
62 int read = handle.getClient().read(handle, readOffset, buffer, 0, 1);
  /external/harfbuzz_ng/src/
hb-ot.h 41 hb_buffer_t *buffer,
  /external/icu4c/common/
ustrfmt.h 14 uprv_itou (UChar * buffer, int32_t capacity, uint32_t i, uint32_t radix, int32_t minwidth);
  /external/icu4c/samples/props/
props.cpp 27 char buffer[100]; local
32 u_charName(codePoint, U_UNICODE_CHAR_NAME, buffer, sizeof(buffer), &errorCode);
35 printf("U+%04lx\t%s\n", codePoint, buffer);

Completed in 1461 milliseconds

<<21222324252627282930>>