Home
last modified time | relevance | path

Searched refs:buffer (Results 251 - 275 of 15935) sorted by relevance

1...<<11121314151617181920>>...638

/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/
H A DUVector64.java25 public long elementAti(int i) { return buffer[i]; } in elementAti()
26 public long[] getBuffer() { return buffer; } in getBuffer()
29 buffer[length++] = e; in addElement()
31 public void setElementAt(long elem, int index) { buffer[index] = elem; } in setElementAt()
34 System.arraycopy(buffer, index, buffer, index + 1, length - index); in insertElementAt()
35 buffer[index] = elem; in insertElementAt()
43 if(length >= buffer.length) { in ensureAppendCapacity()
44 int newCapacity = buffer.length <= 0xffff ? 4 * buffer in ensureAppendCapacity()
50 private long[] buffer = new long[32]; global() field in UVector64
[all...]
H A DUVector32.java25 public int elementAti(int i) { return buffer[i]; } in elementAti()
26 public int[] getBuffer() { return buffer; } in getBuffer()
29 buffer[length++] = e; in addElement()
31 public void setElementAt(int elem, int index) { buffer[index] = elem; } in setElementAt()
34 System.arraycopy(buffer, index, buffer, index + 1, length - index); in insertElementAt()
35 buffer[index] = elem; in insertElementAt()
43 if(length >= buffer.length) { in ensureAppendCapacity()
44 int newCapacity = buffer.length <= 0xffff ? 4 * buffer in ensureAppendCapacity()
50 private int[] buffer = new int[32]; global() field in UVector32
[all...]
H A DBOCSU.java109 byte[] buffer = sink.bytes; in writeIdenticalLevelRun()
110 int capacity = buffer.length; in writeIdenticalLevelRun()
125 buffer[p++] = 2; // merge separator in writeIdenticalLevelRun()
128 p = writeDiff(c - prev, buffer, p); in writeIdenticalLevelRun()
255 * @param buffer byte buffer to append to
256 * @param offset to the byte buffer to start appending
259 private static final int writeDiff(int diff, byte buffer[], int offset) in writeDiff() argument
263 buffer[offset ++] = (byte)(SLOPE_MIDDLE_ + diff); in writeDiff()
266 buffer[offse in writeDiff()
[all...]
/device/board/hihope/dayu210/camera/vdi_impl/v4l2/pipeline_core/src/node/
H A Drk_codec_node.cpp268 void RKCodecNode::SerchIFps(unsigned char* buf, size_t bufSize, std::shared_ptr<IBuffer>& buffer) in SerchIFps() argument
275 if (buffer == nullptr || buf == nullptr) { in SerchIFps()
289 buffer->SetEsKeyFrame(1); in SerchIFps()
304 buffer->SetEsKeyFrame(0); in SerchIFps()
310 void RKCodecNode::Yuv420ToRGBA8888(std::shared_ptr<IBuffer>& buffer) in Yuv420ToRGBA8888() argument
312 if (buffer == nullptr) { in Yuv420ToRGBA8888()
313 CAMERA_LOGI("RKCodecNode::Yuv420ToRGBA8888 buffer == nullptr"); in Yuv420ToRGBA8888()
318 int dma_fd = buffer->GetFileDescriptor(); in Yuv420ToRGBA8888()
319 void* temp = malloc(buffer->GetSize()); in Yuv420ToRGBA8888()
321 CAMERA_LOGI("RKCodecNode::Yuv420ToRGBA8888 malloc buffer in Yuv420ToRGBA8888()
358 Yuv420ToJpeg(std::shared_ptr<IBuffer>& buffer) Yuv420ToJpeg() argument
381 Yuv420ToH264(std::shared_ptr<IBuffer>& buffer) Yuv420ToH264() argument
435 DeliverBuffer(std::shared_ptr<IBuffer>& buffer) DeliverBuffer() argument
[all...]
/foundation/ability/ability_runtime/test/unittest/capi_ability_runtime_application_context_test/
H A Dcapi_ability_runtime_application_context_test.cpp149 char buffer[bufferSize]; in HWTEST_F() local
160 code = OH_AbilityRuntime_ApplicationContextGetCacheDir(buffer, bufferSize, NULL); in HWTEST_F()
163 code = OH_AbilityRuntime_ApplicationContextGetCacheDir(buffer, bufferSize, nullptr); in HWTEST_F()
166 code = OH_AbilityRuntime_ApplicationContextGetCacheDir(buffer, -1, &writeLength); in HWTEST_F()
170 code = OH_AbilityRuntime_ApplicationContextGetCacheDir(buffer, 0, &writeLength); in HWTEST_F()
174 code = OH_AbilityRuntime_ApplicationContextGetCacheDir(buffer, bufferSize, &writeLength); in HWTEST_F()
188 char buffer[bufferSize]; in HWTEST_F() local
199 code = OH_AbilityRuntime_ApplicationContextGetCacheDir(buffer, bufferSize, NULL); in HWTEST_F()
202 code = OH_AbilityRuntime_ApplicationContextGetCacheDir(buffer, bufferSize, nullptr); in HWTEST_F()
205 code = OH_AbilityRuntime_ApplicationContextGetCacheDir(buffer, in HWTEST_F()
226 char buffer[bufferSize]; HWTEST_F() local
274 char buffer[bufferSize]; HWTEST_F() local
413 char buffer[bufferSize]; HWTEST_F() local
456 char buffer[bufferSize]; HWTEST_F() local
498 char buffer[bufferSize]; HWTEST_F() local
[all...]
/kernel/linux/linux-5.10/drivers/misc/ibmasm/
H A Devent.c23 * circular buffer.
38 * Store the event in the circular event buffer, wake up any sleeping
40 * There is no reader marker in the buffer, therefore readers are
45 struct event_buffer *buffer = sp->event_buffer; in ibmasm_receive_event() local
52 /* copy the event into the next slot in the circular buffer */ in ibmasm_receive_event()
53 event = &buffer->events[buffer->next_index]; in ibmasm_receive_event()
56 event->serial_number = buffer->next_serial_number; in ibmasm_receive_event()
58 /* advance indices in the buffer */ in ibmasm_receive_event()
59 buffer in ibmasm_receive_event()
79 struct event_buffer *buffer = sp->event_buffer; ibmasm_get_next_event() local
138 struct event_buffer *buffer; ibmasm_event_buffer_init() local
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/subdev/fault/
H A Duser.c34 struct nvkm_fault_buffer *buffer = nvkm_fault_buffer(object); in nvkm_ufault_map() local
35 struct nvkm_device *device = buffer->fault->subdev.device; in nvkm_ufault_map()
37 *addr = device->func->resource_addr(device, 3) + buffer->addr; in nvkm_ufault_map()
38 *size = nvkm_memory_size(buffer->mem); in nvkm_ufault_map()
46 struct nvkm_fault_buffer *buffer = nvkm_fault_buffer(object); in nvkm_ufault_ntfy() local
48 *pevent = &buffer->fault->event; in nvkm_ufault_ntfy()
57 struct nvkm_fault_buffer *buffer = nvkm_fault_buffer(object); in nvkm_ufault_fini() local
58 buffer->fault->func->buffer.fini(buffer); in nvkm_ufault_fini()
65 struct nvkm_fault_buffer *buffer = nvkm_fault_buffer(object); nvkm_ufault_init() local
93 struct nvkm_fault_buffer *buffer = fault->buffer[fault->func->user.rp]; nvkm_ufault_new() local
[all...]
/kernel/linux/linux-6.6/drivers/misc/ibmasm/
H A Devent.c23 * circular buffer.
38 * Store the event in the circular event buffer, wake up any sleeping
40 * There is no reader marker in the buffer, therefore readers are
45 struct event_buffer *buffer = sp->event_buffer; in ibmasm_receive_event() local
52 /* copy the event into the next slot in the circular buffer */ in ibmasm_receive_event()
53 event = &buffer->events[buffer->next_index]; in ibmasm_receive_event()
56 event->serial_number = buffer->next_serial_number; in ibmasm_receive_event()
58 /* advance indices in the buffer */ in ibmasm_receive_event()
59 buffer in ibmasm_receive_event()
79 struct event_buffer *buffer = sp->event_buffer; ibmasm_get_next_event() local
138 struct event_buffer *buffer; ibmasm_event_buffer_init() local
[all...]
/third_party/icu/icu4c/source/tools/toolutil/
H A Dflagparser.cpp18 static int32_t extractFlag(char* buffer, int32_t bufferSize, char* flag, int32_t flagSize, const char ** flagNames, int32_t numOfFlags, UErrorCode *status);
19 static int32_t getFlagOffset(const char *buffer, int32_t bufferSize);
26 char* buffer = NULL; in parseFlagsFile() local
38 buffer = (char *)uprv_malloc(sizeof(char) * currentBufferSize); in parseFlagsFile()
41 if (buffer == NULL || tmpFlagBuffer == NULL) { in parseFlagsFile()
50 uprv_free(buffer); in parseFlagsFile()
51 buffer = (char *)uprv_malloc(sizeof(char) * currentBufferSize); in parseFlagsFile()
52 if (buffer == NULL) { in parseFlagsFile()
58 if (T_FileStream_readLine(f, buffer, currentBufferSize) == NULL) { in parseFlagsFile()
62 if (buffer[ in parseFlagsFile()
117 extractFlag(char* buffer, int32_t bufferSize, char* flag, int32_t flagSize, const char **flagNames, int32_t numOfFlags, UErrorCode *status) extractFlag() argument
165 getFlagOffset(const char *buffer, int32_t bufferSize) getFlagOffset() argument
[all...]
/third_party/node/lib/internal/fs/
H A Dread_file_context.js16 const { Buffer } = require('buffer');
38 const buffer = bytesRead === kReadFileUnknownBufferLength ?
39 context.buffer : context.buffer.slice(0, bytesRead);
40 ArrayPrototypePush(context.buffers, buffer);
49 let buffer = null;
56 buffer = Buffer.concat(context.buffers, context.pos);
58 buffer = context.buffer.slice(0, context.pos);
60 buffer
[all...]
/third_party/node/deps/icu-small/source/tools/toolutil/
H A Dflagparser.cpp18 static int32_t extractFlag(char* buffer, int32_t bufferSize, char* flag, int32_t flagSize, const char ** flagNames, int32_t numOfFlags, UErrorCode *status);
19 static int32_t getFlagOffset(const char *buffer, int32_t bufferSize);
26 char* buffer = nullptr; in parseFlagsFile() local
38 buffer = (char *)uprv_malloc(sizeof(char) * currentBufferSize); in parseFlagsFile()
41 if (buffer == nullptr || tmpFlagBuffer == nullptr) { in parseFlagsFile()
50 uprv_free(buffer); in parseFlagsFile()
51 buffer = (char *)uprv_malloc(sizeof(char) * currentBufferSize); in parseFlagsFile()
52 if (buffer == nullptr) { in parseFlagsFile()
58 if (T_FileStream_readLine(f, buffer, currentBufferSize) == nullptr) { in parseFlagsFile()
62 if (buffer[ in parseFlagsFile()
117 extractFlag(char* buffer, int32_t bufferSize, char* flag, int32_t flagSize, const char **flagNames, int32_t numOfFlags, UErrorCode *status) extractFlag() argument
165 getFlagOffset(const char *buffer, int32_t bufferSize) getFlagOffset() argument
[all...]
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
H A Dflagparser.cpp18 static int32_t extractFlag(char* buffer, int32_t bufferSize, char* flag, int32_t flagSize, const char ** flagNames, int32_t numOfFlags, UErrorCode *status);
19 static int32_t getFlagOffset(const char *buffer, int32_t bufferSize);
26 char* buffer = NULL; in parseFlagsFile() local
38 buffer = (char *)uprv_malloc(sizeof(char) * currentBufferSize); in parseFlagsFile()
41 if (buffer == NULL || tmpFlagBuffer == NULL) { in parseFlagsFile()
50 uprv_free(buffer); in parseFlagsFile()
51 buffer = (char *)uprv_malloc(sizeof(char) * currentBufferSize); in parseFlagsFile()
52 if (buffer == NULL) { in parseFlagsFile()
58 if (T_FileStream_readLine(f, buffer, currentBufferSize) == NULL) { in parseFlagsFile()
62 if (buffer[ in parseFlagsFile()
117 extractFlag(char* buffer, int32_t bufferSize, char* flag, int32_t flagSize, const char **flagNames, int32_t numOfFlags, UErrorCode *status) extractFlag() argument
165 getFlagOffset(const char *buffer, int32_t bufferSize) getFlagOffset() argument
[all...]
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H A DCodedOutputStream.php38 private $buffer; variable
48 $this->buffer = str_repeat(chr(0), $this->buffer_size); variable
53 return $this->buffer;
92 trigger_error("Output stream doesn't have enough buffer.");
97 $this->buffer[$this->current] = $data[$i];
104 public static function writeVarintToArray($value, &$buffer, $trim = false)
117 $buffer[$current] = chr($low | 0x80);
124 $buffer[$current] = chr($low);
128 private static function writeLittleEndian32ToArray($value, &$buffer)
130 $buffer[
[all...]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DByteBufferWriter.java48 * Minimum size for a cached buffer. This prevents us from allocating buffers that are too small
55 * Maximum size for a cached buffer. If a larger buffer is required, it will be allocated but not
61 /** The fraction of the requested buffer size under which the buffer will be reallocated. */
66 * Keeping a soft reference to a thread-local buffer. This buffer is used for writing a {@link
80 * For testing purposes only. Clears the cached buffer to force a new allocation on the next
88 * Writes the remaining content of the buffer to the given stream. The buffer {
91 write(ByteBuffer buffer, OutputStream output) write() argument
145 writeToChannel(ByteBuffer buffer, OutputStream output) writeToChannel() argument
[all...]
/third_party/ffmpeg/libavcodec/
H A Dmmaldec.c42 #include "libavutil/buffer.h"
66 MMAL_BUFFER_HEADER_T *buffer; member
117 mmal_buffer_header_release(ref->buffer); in ffmmal_release_frame()
123 // Setup frame with a new reference to buffer. The buffer must have been
126 MMAL_BUFFER_HEADER_T *buffer) in ffmmal_set_ref()
133 ref->buffer = buffer; in ffmmal_set_ref()
144 mmal_buffer_header_acquire(buffer); in ffmmal_set_ref()
147 frame->data[3] = (uint8_t *)ref->buffer; in ffmmal_set_ref()
125 ffmmal_set_ref(AVFrame *frame, FFPoolRef *pool, MMAL_BUFFER_HEADER_T *buffer) ffmmal_set_ref() argument
155 MMAL_BUFFER_HEADER_T *buffer; ffmmal_stop_decoder() local
169 FFBufferEntry *buffer = ctx->waiting_buffers; ffmmal_stop_decoder() local
204 input_callback(MMAL_PORT_T *port, MMAL_BUFFER_HEADER_T *buffer) input_callback() argument
219 output_callback(MMAL_PORT_T *port, MMAL_BUFFER_HEADER_T *buffer) output_callback() argument
227 control_port_cb(MMAL_PORT_T *port, MMAL_BUFFER_HEADER_T *buffer) control_port_cb() argument
247 MMAL_BUFFER_HEADER_T *buffer; ffmmal_fill_output_port() local
518 FFBufferEntry *buffer = av_mallocz(sizeof(*buffer)); ffmmal_add_packet() local
578 FFBufferEntry *buffer; ffmmal_fill_input_port() local
619 ffmal_copy_frame(AVCodecContext *avctx, AVFrame *frame, MMAL_BUFFER_HEADER_T *buffer) ffmal_copy_frame() argument
670 MMAL_BUFFER_HEADER_T *buffer = NULL; ffmmal_read_frame() local
[all...]
/third_party/node/deps/npm/node_modules/@sigstore/core/dist/
H A Djson.js22 let buffer = '';
25 buffer += JSON.stringify(object);
29 buffer += '[';
33 buffer += ',';
37 buffer += canonicalize(element);
39 buffer += ']';
43 buffer += '{';
49 buffer += ',';
52 buffer += JSON.stringify(property);
53 buffer
[all...]
/foundation/multimedia/media_foundation/services/media_monitor/common/src/
H A Ddump_buffer_wrap.cpp91 DumpBuffer* buffer = nullptr; in NewDumpBuffer() local
93 buffer = newFunc(); in NewDumpBuffer()
95 return buffer; in NewDumpBuffer()
100 DumpBuffer* buffer = nullptr; in CreateDumpBuffer() local
102 buffer = createFunc(capacity); in CreateDumpBuffer()
104 return buffer; in CreateDumpBuffer()
107 void DumpBufferWrap::DestroyDumpBuffer(DumpBuffer *buffer) in DestroyDumpBuffer() argument
110 destroyFunc(buffer); in DestroyDumpBuffer()
114 uint8_t *DumpBufferWrap::GetAddr(DumpBuffer *buffer) in GetAddr() argument
118 addr = getAddrFunc(buffer); in GetAddr()
123 GetCapacity(DumpBuffer *buffer) GetCapacity() argument
132 GetSize(DumpBuffer *buffer) GetSize() argument
141 Write(DumpBuffer *buffer, const uint8_t *in, int32_t writeSize) Write() argument
150 GetUniqueId(DumpBuffer *buffer) GetUniqueId() argument
159 SetSize(DumpBuffer *buffer, int32_t size) SetSize() argument
168 ReadFromParcel(DumpBuffer *buffer, void *parcel) ReadFromParcel() argument
177 WriteToParcel(DumpBuffer *buffer, void *parcel) WriteToParcel() argument
[all...]
/third_party/gn/src/gn/
H A Dstring_output_buffer_unittest.cc35 StringOutputBuffer buffer; in TEST() local
40 buffer.Append(&data[start_offset], end_offset - start_offset); in TEST()
43 EXPECT_EQ(data.size(), buffer.size()); in TEST()
44 ASSERT_STREQ(data.c_str(), buffer.str().c_str()); in TEST()
53 StringOutputBuffer buffer; in TEST() local
57 buffer.Append(&data[start_offset], page_size); in TEST()
60 EXPECT_EQ(data.size(), buffer.size()); in TEST()
61 ASSERT_STREQ(data.c_str(), buffer.str().c_str()); in TEST()
71 StringOutputBuffer buffer; in TEST() local
72 std::ostream out(&buffer); in TEST()
95 StringOutputBuffer buffer; TEST() local
107 StringOutputBuffer buffer; TEST() local
125 StringOutputBuffer buffer; TEST() local
[all...]
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DBOCSU.java108 byte[] buffer = sink.bytes; in writeIdenticalLevelRun()
109 int capacity = buffer.length; in writeIdenticalLevelRun()
124 buffer[p++] = 2; // merge separator in writeIdenticalLevelRun()
127 p = writeDiff(c - prev, buffer, p); in writeIdenticalLevelRun()
254 * @param buffer byte buffer to append to
255 * @param offset to the byte buffer to start appending
258 private static final int writeDiff(int diff, byte buffer[], int offset) in writeDiff() argument
262 buffer[offset ++] = (byte)(SLOPE_MIDDLE_ + diff); in writeDiff()
265 buffer[offse in writeDiff()
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Main/
H A DFrameBufferAndroid.cpp29 inline int dequeueBuffer(ANativeWindow* window, ANativeWindowBuffer** buffer) in dequeueBuffer() argument
32 int ret = ANativeWindow_dequeueBuffer(window, buffer, &fenceFd); in dequeueBuffer()
39 inline int queueBuffer(ANativeWindow* window, ANativeWindowBuffer* buffer, int fenceFd) in queueBuffer() argument
41 return ANativeWindow_queueBuffer(window, buffer, fenceFd); in queueBuffer()
44 inline int cancelBuffer(ANativeWindow* window, ANativeWindowBuffer* buffer, int fenceFd) in cancelBuffer() argument
46 return ANativeWindow_cancelBuffer(window, buffer, fenceFd); in cancelBuffer()
52 nativeWindow(window), buffer(nullptr) in FrameBufferAndroid()
71 if(buffer) in blit()
80 queueBuffer(nativeWindow, buffer, -1); in blit()
91 TRACE("%s failed to lock buffer in lock()
[all...]
/third_party/libsnd/tests/
H A Dstdio_test.c87 { static char buffer [256] ; in stdio_test() local
93 snprintf (buffer, sizeof (buffer), "./tests/stdout_test %s > stdio.%s", filetype, filetype) ; in stdio_test()
94 if ((retval = system (buffer))) in stdio_test()
96 printf ("%s : %s", buffer, (strerror (retval))) ; in stdio_test()
100 snprintf (buffer, sizeof (buffer), "stdio.%s", filetype) ; in stdio_test()
101 if ((file_size = file_length (buffer)) < PIPE_TEST_LEN) in stdio_test()
102 { printf ("\n Error : test file '%s' too small (%d).\n\n", buffer, file_size) ; in stdio_test()
106 snprintf (buffer, sizeo in stdio_test()
[all...]
/third_party/skia/src/core/
H A DSkPath_serial.cpp83 SkWBuffer buffer(storage); in writeToMemoryAsRRect()
84 buffer.write32(packed); in writeToMemoryAsRRect()
85 SkRRectPriv::WriteToBuffer(rrect, &buffer); in writeToMemoryAsRRect()
86 buffer.write32(SkToS32(start)); in writeToMemoryAsRRect()
87 buffer.padToAlign4(); in writeToMemoryAsRRect()
88 SkASSERT(sizeNeeded == buffer.pos()); in writeToMemoryAsRRect()
89 return buffer.pos(); in writeToMemoryAsRRect()
120 SkWBuffer buffer(storage); in writeToMemory()
121 buffer.write32(packed); in writeToMemory()
122 buffer in writeToMemory()
[all...]
/kernel/linux/linux-6.6/drivers/xen/
H A Dsys-hypervisor.c40 static ssize_t type_show(struct hyp_sysfs_attr *attr, char *buffer) in type_show() argument
42 return sprintf(buffer, "xen\n"); in type_show()
52 static ssize_t guest_type_show(struct hyp_sysfs_attr *attr, char *buffer) in guest_type_show() argument
71 return sprintf(buffer, "%s\n", type); in guest_type_show()
82 static ssize_t major_show(struct hyp_sysfs_attr *attr, char *buffer) in major_show() argument
86 return sprintf(buffer, "%d\n", version >> 16); in major_show()
92 static ssize_t minor_show(struct hyp_sysfs_attr *attr, char *buffer) in minor_show() argument
96 return sprintf(buffer, "%d\n", version & 0xff); in minor_show()
102 static ssize_t extra_show(struct hyp_sysfs_attr *attr, char *buffer) in extra_show() argument
111 ret = sprintf(buffer, " in extra_show()
139 uuid_show_fallback(struct hyp_sysfs_attr *attr, char *buffer) uuid_show_fallback() argument
160 uuid_show(struct hyp_sysfs_attr *attr, char *buffer) uuid_show() argument
180 compiler_show(struct hyp_sysfs_attr *attr, char *buffer) compiler_show() argument
198 compiled_by_show(struct hyp_sysfs_attr *attr, char *buffer) compiled_by_show() argument
216 compile_date_show(struct hyp_sysfs_attr *attr, char *buffer) compile_date_show() argument
253 capabilities_show(struct hyp_sysfs_attr *attr, char *buffer) capabilities_show() argument
271 changeset_show(struct hyp_sysfs_attr *attr, char *buffer) changeset_show() argument
289 virtual_start_show(struct hyp_sysfs_attr *attr, char *buffer) virtual_start_show() argument
309 pagesize_show(struct hyp_sysfs_attr *attr, char *buffer) pagesize_show() argument
322 xen_feature_show(int index, char *buffer) xen_feature_show() argument
335 features_show(struct hyp_sysfs_attr *attr, char *buffer) features_show() argument
358 buildid_show(struct hyp_sysfs_attr *attr, char *buffer) buildid_show() argument
412 flag_show(struct hyp_sysfs_attr *attr, char *buffer) flag_show() argument
472 pmu_mode_store(struct hyp_sysfs_attr *attr, const char *buffer, size_t len) pmu_mode_store() argument
498 pmu_mode_show(struct hyp_sysfs_attr *attr, char *buffer) pmu_mode_show() argument
521 pmu_features_store(struct hyp_sysfs_attr *attr, const char *buffer, size_t len) pmu_features_store() argument
542 pmu_features_show(struct hyp_sysfs_attr *attr, char *buffer) pmu_features_show() argument
630 hyp_sysfs_show(struct kobject *kobj, struct attribute *attr, char *buffer) hyp_sysfs_show() argument
641 hyp_sysfs_store(struct kobject *kobj, struct attribute *attr, const char *buffer, size_t len) hyp_sysfs_store() argument
[all...]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-layout.hh35 #include "hb-buffer.hh"
60 hb_buffer_t *buffer);
103 hb_buffer_t *buffer);
106 hb_ot_layout_delete_glyphs_inplace (hb_buffer_t *buffer,
124 hb_buffer_t *buffer);
129 hb_buffer_t *buffer);
134 hb_buffer_t *buffer);
141 /* buffer var allocations, used during the entire shaping process */
144 /* buffer var allocations, used during the GSUB/GPOS processing */
151 #define foreach_syllable(buffer, star
159 _hb_next_syllable(hb_buffer_t *buffer, unsigned int start) _hb_next_syllable() argument
172 _hb_clear_syllables(const hb_ot_shape_plan_t *plan HB_UNUSED, hb_font_t *font HB_UNUSED, hb_buffer_t *buffer) _hb_clear_syllables() argument
215 _hb_glyph_info_set_unicode_props(hb_glyph_info_t *info, hb_buffer_t *buffer) _hb_glyph_info_set_unicode_props() argument
362 _hb_next_grapheme(hb_buffer_t *buffer, unsigned int start) _hb_next_grapheme() argument
489 _hb_allocate_lig_id(hb_buffer_t *buffer) _hb_allocate_lig_id() argument
566 _hb_clear_substitution_flags(const hb_ot_shape_plan_t *plan HB_UNUSED, hb_font_t *font HB_UNUSED, hb_buffer_t *buffer) _hb_clear_substitution_flags() argument
580 _hb_buffer_allocate_unicode_vars(hb_buffer_t *buffer) _hb_buffer_allocate_unicode_vars() argument
586 _hb_buffer_deallocate_unicode_vars(hb_buffer_t *buffer) _hb_buffer_deallocate_unicode_vars() argument
592 _hb_buffer_assert_unicode_vars(hb_buffer_t *buffer) _hb_buffer_assert_unicode_vars() argument
598 _hb_buffer_allocate_gsubgpos_vars(hb_buffer_t *buffer) _hb_buffer_allocate_gsubgpos_vars() argument
606 _hb_buffer_deallocate_gsubgpos_vars(hb_buffer_t *buffer) _hb_buffer_deallocate_gsubgpos_vars() argument
614 _hb_buffer_assert_gsubgpos_vars(hb_buffer_t *buffer) _hb_buffer_assert_gsubgpos_vars() argument
[all...]
/device/board/hihope/rk3568/camera/vdi_impl/v4l2/pipeline_core/src/node/
H A Drk_codec_node.cpp251 static void SerchIFps(unsigned char* buf, size_t bufSize, std::shared_ptr<IBuffer>& buffer) in SerchIFps() argument
258 if (buffer == nullptr || buf == nullptr) { in SerchIFps()
272 buffer->SetEsKeyFrame(1); in SerchIFps()
287 buffer->SetEsKeyFrame(0); in SerchIFps()
293 static void BufferFormatTransform(std::shared_ptr<IBuffer>& buffer, uint32_t format) in BufferFormatTransform() argument
295 auto oldFmt = buffer->GetFormat(); in BufferFormatTransform()
296 buffer->SetFormat(format); in BufferFormatTransform()
297 RkNodeUtils::BufferScaleFormatTransform(buffer, false); in BufferFormatTransform()
298 buffer->SetFormat(oldFmt); in BufferFormatTransform()
301 void RKCodecNode::Yuv420ToJpeg(std::shared_ptr<IBuffer>& buffer) in Yuv420ToJpeg() argument
324 Yuv420ToH264(std::shared_ptr<IBuffer>& buffer) Yuv420ToH264() argument
381 DeliverBuffer(std::shared_ptr<IBuffer>& buffer) DeliverBuffer() argument
[all...]

Completed in 12 milliseconds

1...<<11121314151617181920>>...638