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

<<21222324252627282930>>

  /external/icu4c/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/icu4c/tools/genrb/
rbutil.h 25 int32_t itostr(char * buffer, int32_t i, uint32_t radix, int32_t pad);
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
Vector3Serializer.java 22 public void writeObject(ByteBuffer buffer, Object object) throws IOException {
24 buffer.putFloat(vec3.x);
25 buffer.putFloat(vec3.y);
26 buffer.putFloat(vec3.z);
  /external/mesa3d/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/mesa3d/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/nist-sip/java/gov/nist/javax/sip/header/
AcceptEncoding.java 97 protected StringBuffer encodeBody(StringBuffer buffer) {
99 buffer.append(contentCoding);
102 buffer.append(SEMICOLON).append(parameters.encode());
104 return buffer;
ContentLength.java 133 protected StringBuffer encodeBody(StringBuffer buffer) {
135 buffer.append("0");
137 buffer.append(contentLength.toString());
138 return buffer;
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
UnknownLengthHttpInputStream.java 33 @Override public int read(byte[] buffer, int offset, int count) throws IOException {
34 checkOffsetAndCount(buffer.length, offset, count);
39 int read = in.read(buffer, offset, count);
45 cacheWrite(buffer, offset, read);
  /external/skia/include/ports/
SkHarfBuzzFont.h 37 HB_Byte* buffer, HB_UInt* len);
  /external/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/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
InstructionWithJumboReference.java 50 protected InstructionWithJumboReference(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
51 super(dexFile, opcode, buffer, bufferIndex);
54 protected int getReferencedItemIndex(byte[] buffer, int bufferIndex) {
55 return NumberUtils.decodeInt(buffer, bufferIndex + 2);
  /external/srec/audio/AudioIn/UNIX/include/
audioinwrapper.h 35 int AudioRead(short *buffer, int frame_count);
  /external/srtp/include/
ut_sim.h 58 uint32_t buffer[UT_BUF]; member in struct:__anon28430
  /external/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/webp/src/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...]
  /frameworks/av/include/media/nbaio/
LibsndfileSink.h 45 virtual ssize_t write(const void *buffer, size_t count);
  /frameworks/av/media/libstagefright/
SkipCutBuffer.cpp 41 void SkipCutBuffer::submit(MediaBuffer *buffer) {
42 int32_t offset = buffer->range_offset();
43 int32_t buflen = buffer->range_length();
45 // drop the initial data from the buffer if needed
51 buffer->set_range(offset, buflen);
57 char *src = ((char*) buffer->data()) + offset;
63 char *dst = (char*) buffer->data();
64 size_t copied = read(dst, buffer->size());
65 buffer->set_range(0, copied);
68 void SkipCutBuffer::submit(const sp<ABuffer>& buffer) {
    [all...]
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3StreamInterface.h 85 * Fill in the camera3_stream_buffer with the next valid buffer for this
93 virtual status_t getBuffer(camera3_stream_buffer *buffer) = 0;
96 * Return a buffer to the stream after use by the HAL.
101 virtual status_t returnBuffer(const camera3_stream_buffer &buffer,
105 * Fill in the camera3_stream_buffer with the next valid buffer for this
113 virtual status_t getInputBuffer(camera3_stream_buffer *buffer) = 0;
116 * Return a buffer to the stream after use by the HAL.
121 virtual status_t returnInputBuffer(const camera3_stream_buffer &buffer) = 0;
  /frameworks/base/core/java/android/speech/tts/
SynthesisCallback.java 60 * @param buffer The generated audio data. This method will not hold on to {@code buffer},
62 * @param offset The offset into {@code buffer} where the audio data starts.
63 * @param length The number of bytes of audio data in {@code buffer}. This must be
67 public int audioAvailable(byte[] buffer, int offset, int length);
  /frameworks/compile/libbcc/include/bcinfo/Wrap/
wrapper_output.h 38 // Writes the specified number of bytes in the buffer to
40 virtual bool Write(const uint8_t* buffer, size_t buffer_size);
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
QuotedPrintable.java 43 ByteArrayOutputStream buffer = new ByteArrayOutputStream(); local
58 buffer.write((char) ((u << 4) + l));
63 buffer.write(b);
66 return buffer.toByteArray();
  /hardware/libhardware_legacy/include/hardware_legacy/
uevent.h 26 int uevent_next_event(char* buffer, int buffer_length);
  /hardware/qcom/media/mm-video-legacy/DivxDrmDecrypt/inc/
DivXDrmDecrypt.h 40 virtual OMX_ERRORTYPE Decrypt(OMX_BUFFERHEADERTYPE* buffer) = 0;

Completed in 1247 milliseconds

<<21222324252627282930>>