Searched refs:buffer_size (Results 1 - 11 of 11) sorted by relevance

/frameworks/compile/libbcc/bcinfo/Wrap/
H A Dwrapper_output.cpp19 bool WrapperOutput::Write(const uint8_t* buffer, size_t buffer_size) { argument
21 for (size_t i = 0; i < buffer_size; ++i) {
H A Dfile_wrapper_output.cpp38 bool FileWrapperOutput::Write(const uint8_t* buffer, size_t buffer_size) { argument
43 if (buffer_size > 0) {
44 return buffer_size == fwrite(buffer, 1, buffer_size, _file);
/frameworks/compile/libbcc/include/bcinfo/Wrap/
H A Dfile_wrapper_output.h36 virtual bool Write(const uint8_t* buffer, size_t buffer_size);
H A Dwrapper_output.h40 virtual bool Write(const uint8_t* buffer, size_t buffer_size);
/frameworks/base/media/mca/filterfw/native/core/
H A Dnative_program.cpp136 static const int buffer_size = 1024; local
137 char result[buffer_size];
138 result[buffer_size - 1] = '\0';
139 getvalue_function_(key.c_str(), result, buffer_size, user_data_);
H A Dshader_program.cpp384 int buffer_size; local
388 glGetProgramiv(program_, GL_ACTIVE_UNIFORM_MAX_LENGTH, &buffer_size);
389 std::vector<GLchar> name(buffer_size);
391 glGetActiveUniform(program_, i, buffer_size, NULL, &capacity, &type, &name[0]);
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/include/
H A Dmp4dec_api.h157 OSCL_IMPORT_REF Bool PVDecodeVideoFrame(VideoDecControls *decCtrl, uint8 *bitstream[], uint32 *timestamp, int32 *buffer_size, uint use_ext_timestamp[], uint8* currYUV);
158 Bool PVDecodeVopHeader(VideoDecControls *decCtrl, uint8 *buffer[], uint32 timestamp[], int32 buffer_size[], VopHeaderInfo *header_info, uint use_ext_timestamp[], uint8 *currYUV);
159 Bool PVDecodeVopBody(VideoDecControls *decCtrl, int32 buffer_size[]);
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dpvdec_api.cpp193 int32 buffer_size; local
194 if ((buffer_size = BitstreamOpen(stream, idx)) < 0)
200 video->memoryUsage += buffer_size;
1007 uint32 timestamp[], int32 buffer_size[], uint use_ext_timestamp[], uint8 *currYUV)
1012 status = (PV_STATUS)PVDecodeVopHeader(decCtrl, buffer, timestamp, buffer_size, &header_info, use_ext_timestamp, currYUV);
1016 if (PVDecodeVopBody(decCtrl, buffer_size) != PV_TRUE)
1035 uint32 timestamp[], int32 buffer_size[], VopHeaderInfo *header_info, uint use_ext_timestamp [], uint8 *currYUV)
1057 if (buffer_size[idx] <= 0)
1071 BitstreamReset(stream, buffer[idx], buffer_size[idx]);
1080 buffer_size[id
1006 PVDecodeVideoFrame(VideoDecControls *decCtrl, uint8 *buffer[], uint32 timestamp[], int32 buffer_size[], uint use_ext_timestamp[], uint8 *currYUV) argument
1034 PVDecodeVopHeader(VideoDecControls *decCtrl, uint8 *buffer[], uint32 timestamp[], int32 buffer_size[], VopHeaderInfo *header_info, uint use_ext_timestamp [], uint8 *currYUV) argument
1245 PVDecodeVopBody(VideoDecControls *decCtrl, int32 buffer_size[]) argument
[all...]
H A Dbitstream.cpp124 void BitstreamReset(BitstreamDecVideo *stream, uint8 *buffer, int32 buffer_size) argument
128 stream->data_end_pos = buffer_size;
142 int buffer_size = 0; local
152 return buffer_size;
H A Dbitstream.h35 void BitstreamReset(BitstreamDecVideo *stream, uint8 *buffer, int32 buffer_size);
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_GpsLocationProvider.cpp688 jbyteArray nmeaArray, jint buffer_size)
693 if (length > buffer_size)
694 length = buffer_size;
687 android_location_GpsLocationProvider_read_nmea(JNIEnv* env, jobject obj, jbyteArray nmeaArray, jint buffer_size) argument

Completed in 3764 milliseconds