HomeSort by relevance Sort by last modified time
    Searched refs:buffer (Results 426 - 450 of 9401) sorted by null

<<11121314151617181920>>

  /external/chromium_org/sandbox/win/src/
internal_types.h 28 // Encapsulates a pointer to a buffer and the size of the buffer.
31 CountedBuffer(void* buffer, uint32 size) : size_(size), buffer_(buffer) {}
37 void* Buffer() const {
50 explicit IPCInt(void* buffer) {
51 buffer_.vp = buffer;
  /external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/
V8CryptoCustom.cpp 47 v8::Handle<v8::Value> buffer = info[0]; local
48 if (!V8ArrayBufferView::hasInstance(buffer, info.GetIsolate())) {
51 ArrayBufferView* arrayBufferView = V8ArrayBufferView::toImpl(v8::Handle<v8::Object>::Cast(buffer));
61 v8SetReturnValue(info, buffer);
  /external/chromium_org/third_party/WebKit/Source/core/streams/
Stream.cpp 53 RefPtr<RawData> buffer(RawData::create());
54 buffer->mutableData()->resize(len);
55 memcpy(buffer->mutableData()->data(), data, len);
56 BlobRegistry::addDataToStream(m_internalURL, 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/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/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);
  /external/chromium_org/third_party/icu/source/test/intltest/
ucaconf.cpp 111 char buffer[1024]; local
112 uprv_strcpy(buffer, testDataPath);
113 uprv_strcat(buffer, type);
114 int32_t bufLen = (int32_t)uprv_strlen(buffer);
122 uprv_strcpy(buffer+bufLen, ext);
124 testFile = fopen(buffer, "rb");
127 uprv_strcpy(buffer+bufLen, "_SHORT");
128 uprv_strcat(buffer, ext);
129 testFile = fopen(buffer, "rb");
132 uprv_strcpy(buffer+bufLen, "_STUB")
196 UChar *buffer = b1, *oldB = NULL; local
    [all...]
  /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/libsrtp/srtp/include/
ut_sim.h 58 uint32_t buffer[UT_BUF]; member in struct:__anon17470
  /external/chromium_org/third_party/libva/va/egl/
va_backend_egl.h 32 /* Get EGL ClientBufer buffer index and device id from surface id*/
36 void **buffer
  /external/chromium_org/third_party/libvpx/source/libvpx/
ivfdec.h 21 int ivf_read_frame(FILE *infile, uint8_t **buffer,
  /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/webrtc/modules/audio_coding/codecs/ilbc/
augmented_cb_corr.h 30 int16_t *buffer, /* (i) Memory buffer */
31 int16_t *interpSamples, /* (i) buffer with
comp_corr.h 32 int16_t *buffer, /* (i) signal buffer */
34 int16_t bLen, /* (i) length of buffer */
  /external/chromium_org/v8/src/
bignum-dtoa.h 25 // The result should be interpreted as buffer * 10^(point-length).
26 // The buffer will be null-terminated.
34 // 'v' again. The buffer will choose the representation that is closest to
40 // Example: toFixed(0.001, 5) is allowed to return buffer="1", point=-2.
42 // buffer="2", point=0.
43 // Note: the length of the returned buffer has no meaning wrt the significance
51 // 'BignumDtoa' expects the given buffer to be big enough to hold all digits
54 Vector<char> buffer, int* length, int* point);
dtoa.h 25 // Note that DoubleToAscii null-terminates its input. So the given buffer should
30 // The result should be interpreted as buffer * 10^(point-length).
36 // 'v' again. The buffer will choose the representation that is closest to
43 // Example: toFixed(0.001, 5) is allowed to return buffer="1", point=-2.
45 // toFixed(0.15, 2) thus returns buffer="2", point=0.
46 // The returned buffer may contain digits that would be truncated from the
53 // 'DoubleToAscii' expects the given buffer to be big enough to hold all digits
54 // and a terminating null-character. In SHORTEST-mode it expects a buffer of
58 Vector<char> buffer, int* sign, int* length, int* point);
fast-dtoa.h 26 // The result should be interpreted as buffer * 10^(point - length).
32 // There will be *length digits inside the buffer followed by a null terminator.
37 // v == (double) (buffer * 10^(point - length)).
38 // The digits in the buffer are the shortest representation possible. E.g.
42 // digits might correctly yield 'v' when read again, the buffer will contain
45 // the buffer contains requested_digits digits.
46 // the difference v - (buffer * 10^(point-length)) is closest to zero for
50 // For both modes the buffer must be large enough to hold the result.
54 Vector<char> buffer,
  /external/elfutils/0.153/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/glide/library/src/main/java/com/bumptech/glide/load/model/
StreamEncoder.java 14 byte[] buffer = ByteArrayPool.get().getBytes();
17 while ((read = data.read(buffer)) != -1) {
18 os.write(buffer, 0, read);
24 ByteArrayPool.get().releaseBytes(buffer);
  /external/icu/icu4c/source/common/
ustrfmt.h 14 uprv_itou (UChar * buffer, int32_t capacity, uint32_t i, uint32_t radix, int32_t minwidth);
  /external/icu/icu4c/source/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);
  /external/icu/icu4c/source/test/intltest/
ucaconf.cpp 113 char buffer[1024]; local
114 uprv_strcpy(buffer, testDataPath);
115 uprv_strcat(buffer, type);
116 int32_t bufLen = (int32_t)uprv_strlen(buffer);
124 uprv_strcpy(buffer+bufLen, ext);
126 testFile = fopen(buffer, "rb");
129 uprv_strcpy(buffer+bufLen, "_SHORT");
130 uprv_strcat(buffer, ext);
131 testFile = fopen(buffer, "rb");
134 uprv_strcpy(buffer+bufLen, "_STUB")
190 UChar *buffer = b1, *oldB = NULL; local
    [all...]
  /external/icu/icu4c/source/tools/genrb/
rbutil.h 25 int32_t itostr(char * buffer, int32_t i, uint32_t radix, int32_t pad);

Completed in 572 milliseconds

<<11121314151617181920>>