Home
last modified time | relevance | path

Searched refs:data (Results 9501 - 9525 of 16035) sorted by relevance

1...<<381382383384385386387388389390>>...642

/vendor/hisilicon/hispark_pegasus/demo/environment_demo/
H A Diot_adc.h30 * @brief Declares the ADC interface functions for you to read data.
97 * @brief Reads a piece of sampled data from a specified ADC channel based on the input parameters.
102 * @param data Indicates the pointer to the address for storing the read data.
112 unsigned int AdcRead(IotAdcChannelIndex channel, unsigned const short *data, IotAdcEquModelSel equModel,
/vendor/hisilicon/hispark_pegasus/demo/histreaming_demo/
H A Diot_adc.h30 * @brief Declares the ADC interface functions for you to read data.
97 * @brief Reads a piece of sampled data from a specified ADC channel based on the input parameters.
102 * @param data Indicates the pointer to the address for storing the read data.
112 unsigned int AdcRead(const IotAdcChannelIndex channel, const unsigned short *data,
/vendor/hisilicon/hispark_pegasus/demo/nfc_demo/
H A Diot_adc.h30 * @brief Declares the ADC interface functions for you to read data.
97 * @brief Reads a piece of sampled data from a specified ADC channel based on the input parameters.
102 * @param data Indicates the pointer to the address for storing the read data.
112 unsigned int AdcRead(const IotAdcChannelIndex channel, const unsigned short *data,
/vendor/hisilicon/hispark_pegasus/demo/oc_demo/
H A Diot_adc.h30 * @brief Declares the ADC interface functions for you to read data.
97 * @brief Reads a piece of sampled data from a specified ADC channel based on the input parameters.
102 * @param data Indicates the pointer to the address for storing the read data.
112 unsigned int AdcRead(const IotAdcChannelIndex channel, const unsigned short *data,
/vendor/hisilicon/hispark_pegasus/demo/traffic_light_demo/
H A Diot_adc.h30 * @brief Declares the ADC interface functions for you to read data.
97 * @brief Reads a piece of sampled data from a specified ADC channel based on the input parameters.
102 * @param data Indicates the pointer to the address for storing the read data.
112 unsigned int AdcRead(const IotAdcChannelIndex channel, const unsigned short *data,
/third_party/ffmpeg/libavcodec/
H A Dh264_slice.c194 av_assert0(!pic->f->data[0]); in alloc_picture()
218 pic->hwaccel_picture_private = pic->hwaccel_priv_buf->data; in alloc_picture()
221 if (CONFIG_GRAY && !h->avctx->hwaccel && h->flags & AV_CODEC_FLAG_GRAY && pic->f->data[2]) { in alloc_picture()
227 memset(pic->f->data[1] + pic->f->linesize[1]*i, in alloc_picture()
229 memset(pic->f->data[2] + pic->f->linesize[2]*i, in alloc_picture()
245 pic->mb_type = (uint32_t*)pic->mb_type_buf->data + 2 * h->mb_stride + 1; in alloc_picture()
246 pic->qscale_table = pic->qscale_table_buf->data + 2 * h->mb_stride + 1; in alloc_picture()
254 pic->motion_val[i] = (int16_t (*)[2])pic->motion_val_buf[i]->data + 4; in alloc_picture()
255 pic->ref_index[i] = pic->ref_index_buf[i]->data; in alloc_picture()
261 pic->pps = (const PPS*)pic->pps_buf->data; in alloc_picture()
[all...]
H A Dclearvideo.c201 c->pic->data[0] + off + (i & 1) * 8, in decode_mb()
218 c->idsp.put_pixels_clamped(c->block, c->pic->data[i] + off, in decode_mb()
245 sbuf = src->data[plane]; in copy_block()
247 dbuf = dst->data[plane]; in copy_block()
270 uint8_t *sbuf = src->data[plane]; in copyadd_block()
272 uint8_t *dbuf = dst->data[plane]; in copyadd_block()
473 uint8_t *framebuf = buf->data[comp]; in extend_edges()
505 const uint8_t *buf = avpkt->data; in clv_decode_frame()
H A Divi.c25 * This file contains functions and data shared by both Indeo4 and
450 * Decode size of the tile data.
454 * where X1-X3 is size of the tile data
457 * @return size of the tile data in bytes
560 return AVERROR_INVALIDDATA; /* corrupt block data */ in ivi_decode_coded_blocks()
586 * Decode block data:
594 * @return result code: 0 - OK, -1 = error (corrupted blocks data)
740 * Handle empty tiles by performing data copying and motion
859 /* copy data from the reference tile into the current one */ in ivi_process_empty_tile()
949 av_log(avctx, AV_LOG_ERROR, "Band buffer points to no data!\ in decode_band()
[all...]
/third_party/nghttp2/src/
H A Dshrpx_config.cc174 auto expectedlen = keys[0].data.name.size() + enc_keylen + hmac_keylen; in read_tls_ticket_key_file()
220 std::copy_n(p, key.data.name.size(), std::begin(key.data.name)); in read_tls_ticket_key_file()
221 p += key.data.name.size(); in read_tls_ticket_key_file()
222 std::copy_n(p, enc_keylen, std::begin(key.data.enc_key)); in read_tls_ticket_key_file()
224 std::copy_n(p, hmac_keylen, std::begin(key.data.hmac_key)); in read_tls_ticket_key_file()
227 LOG(INFO) << "session ticket key: " << util::format_hex(key.data.name); in read_tls_ticket_key_file()
250 while (f.getline(buf.data(), buf.size())) { in read_quic_secret_file()
251 auto len = strlen(buf.data()); in read_quic_secret_file()
321 << xsi_strerror(error, errbuf.data(), errbu in open_file_for_write()
[all...]
/third_party/python/Lib/test/
H A Dtest_collections.py45 self.assertIsNot(obj.data, obj_copy.data)
46 self.assertEqual(obj.data, obj_copy.data)
51 self.assertIsNot(obj.data, obj_copy.data)
52 self.assertEqual(obj.data, obj_copy.data)
1391 self.data = set(it)
1394 return len(self.data)
[all...]
H A Dtest_itertools.py118 pass #in case there is less data than 'take'
496 self.assertEqual(list(compress(data='ABCDEF', selectors=[1,0,1,0,1,1])), list('ACEF'))
503 data = chain.from_iterable(repeat(range(6), n))
505 self.assertEqual(list(compress(data, selectors)), [1,3,5] * n)
513 for data, selectors, result1, result2 in [
521 self.assertEqual(list(op(compress(data=data, selectors=selectors))), list(result1))
522 self.assertEqual(list(op(compress(data, selectors))), list(result1))
523 testIntermediate = compress(data, selectors)
711 # a list of previously consumed values. There is no data
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/dbus/
H A Ddbus_new_handlers.c158 * @global: Pointer to global data from wpa_supplicant_init()
551 * @global: %wpa_supplicant global data structure
666 * @global: wpa_supplicant global data structure
700 * @global: %wpa_supplicant global data structure
739 * @user_data: Function specific data
765 * @user_data: Function specific data
784 * @user_data: Function specific data
802 * @user_data: Function specific data
841 * @user_data: Function specific data
867 * @user_data: Function specific data
4098 struct hostap_sta_driver_data data; wpas_dbus_getter_sta_rx_packets() local
4137 struct hostap_sta_driver_data data; wpas_dbus_getter_sta_tx_packets() local
4176 struct hostap_sta_driver_data data; wpas_dbus_getter_sta_tx_bytes() local
4215 struct hostap_sta_driver_data data; wpas_dbus_getter_sta_rx_bytes() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/dbus/
H A Ddbus_new_handlers.c172 * @global: Pointer to global data from wpa_supplicant_init()
688 * @global: %wpa_supplicant global data structure
803 * @global: wpa_supplicant global data structure
837 * @global: %wpa_supplicant global data structure
876 * @user_data: Function specific data
902 * @user_data: Function specific data
921 * @user_data: Function specific data
939 * @user_data: Function specific data
978 * @user_data: Function specific data
1004 * @user_data: Function specific data
4705 struct hostap_sta_driver_data data; wpas_dbus_getter_sta_rx_packets() local
4744 struct hostap_sta_driver_data data; wpas_dbus_getter_sta_tx_packets() local
4783 struct hostap_sta_driver_data data; wpas_dbus_getter_sta_tx_bytes() local
4822 struct hostap_sta_driver_data data; wpas_dbus_getter_sta_rx_bytes() local
[all...]
/third_party/mesa3d/src/amd/llvm/
H A Dac_nir_to_llvm.c112 return (LLVMBasicBlockRef)entry->data; in get_block()
1439 * However, cube textures with 8_8_8_8 data formats require a different
1441 * precision in 32-bit data formats, so it needs to be applied dynamically at
1808 /* If this is write-only, don't keep data in L1 to prevent in get_cache_policy()
1853 LLVMValueRef data, offset; in visit_store_ssbo() local
1888 data = extract_vector_range(&ctx->ac, base_data, start, count); in visit_store_ssbo()
1894 ac_build_buffer_store_byte(&ctx->ac, rsrc, data, offset, ctx->ac.i32_0, cache_policy); in visit_store_ssbo()
1896 ac_build_buffer_store_short(&ctx->ac, rsrc, data, offset, ctx->ac.i32_0, cache_policy); in visit_store_ssbo()
1914 data = LLVMBuildBitCast(ctx->ac.builder, data, data_typ in visit_store_ssbo()
2050 LLVMValueRef data = ac_llvm_extract_elem(&ctx->ac, get_src(ctx, instr->src[2]), 0); visit_atomic_ssbo() local
2204 LLVMValueRef data = get_src(ctx, instr->src[0]); visit_store_global() local
2228 LLVMValueRef data = get_src(ctx, instr->src[1]); visit_global_atomic() local
3119 LLVMValueRef derived_ptr, data, index; visit_store_shared() local
4249 LLVMValueRef data = extract_vector_range(&ctx->ac, store_data, start, count); visit_intrinsic() local
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_ciescope.c1240 pixels = (uint16_t *)s->f->data[0]; in draw_background()
1405 memset(out->data[0] + y * out->linesize[0], 0, outlink->w * 8); in filter_frame()
1409 const uint8_t *src = in->data[0]; in filter_frame()
1411 uint16_t *dst = (uint16_t *)out->data[0]; in filter_frame()
1455 uint16_t *dst = (uint16_t *)(out->data[0] + y * out->linesize[0]); in filter_frame()
1456 const uint16_t *src = (const uint16_t *)(s->f->data[0] + y * s->f->linesize[0]); in filter_frame()
1469 plot_white_point((uint16_t *)out->data[0], out->linesize[0] / 2, in filter_frame()
1473 plot_gamuts((uint16_t *)out->data[0], out->linesize[0] / 2, in filter_frame()
H A Df_ebur128.c88 double *swr_buf; ///< resampled audio data for true peak metering
255 uint8_t *p = pic->data[0] + y*pic->linesize[0] + (x + i*8)*3; in drawtext()
273 uint8_t *p = pic->data[0] + y*pic->linesize[0] + x*3; in drawline()
339 memset(outpicref->data[0], 0, ebur128->h * outpicref->linesize[0]); in config_video_output()
356 p = outpicref->data[0] + ebur128->graph.y * outpicref->linesize[0] in config_video_output()
623 const double *samples = (double *)insamples->data[0]; in filter_frame()
630 (const uint8_t **)insamples->data, nb_samples); in filter_frame()
823 p = pic->data[0] + ebur128->graph.y*pic->linesize[0] + ebur128->graph.x*3; in filter_frame()
833 p = pic->data[0] + ebur128->gauge.y*pic->linesize[0] + ebur128->gauge.x*3; in filter_frame()
/third_party/ffmpeg/libavfilter/dnn/
H A Ddnn_backend_tf.c97 static void free_buffer(void *data, size_t length) in free_buffer() argument
99 av_freep(&data); in free_buffer()
252 graph_buf->data = graph_data; in read_graph()
362 static int hex_to_data(uint8_t *data, const char *p) in hex_to_data() argument
381 if (data) { in hex_to_data()
382 data[len] = v; in hex_to_data()
401 // prepare the sess config data in load_tf_model()
423 av_log(ctx, AV_LOG_ERROR, "failed to convert hex to data\n"); in load_tf_model()
990 input.data = (float *)TF_TensorData(infer_request->input_tensor); in fill_model_input_tf()
1060 outputs[i].data in infer_completion_callback()
[all...]
/third_party/ffmpeg/tests/fate/
H A Dvcodec.mak1 fate-vsynth1-%: SRC = tests/data/vsynth1.yuv
2 fate-vsynth2-%: SRC = tests/data/vsynth2.yuv
3 fate-vsynth_lena-%: SRC = tests/data/vsynth_lena.yuv
4 fate-vsynth3-%: SRC = tests/data/vsynth3.yuv
475 $(FATE_VSYNTH1): tests/data/vsynth1.yuv
476 $(FATE_VSYNTH2): tests/data/vsynth2.yuv
477 $(FATE_VSYNTH_LENA): tests/data/vsynth_lena.yuv
478 $(FATE_VSYNTH3): tests/data/vsynth3.yuv
/third_party/FreeBSD/sys/compat/linuxkpi/common/src/
H A Dlinux_usb.c547 * Until the stall is cleared, no data can be transferred.
638 * a data-phase as indicated by the 8-byte header. The "timeout" is
649 uint16_t value, uint16_t index, void *data, in usb_control_msg()
680 NULL, &req, data, USB_SHORT_XFER_OK, in usb_control_msg()
697 * transfer data to/from the stack! in usb_control_msg()
711 /* move the data to a real buffer */ in usb_control_msg()
713 data, size); in usb_control_msg()
720 sizeof(req)), data, actlen); in usb_control_msg()
1414 * data pointer. It is used by most Linux USB device drivers.
1417 usb_set_intfdata(struct usb_interface *intf, void *data) in usb_set_intfdata() argument
647 usb_control_msg(struct usb_device *dev, struct usb_host_endpoint *uhe, uint8_t request, uint8_t requesttype, uint16_t value, uint16_t index, void *data, uint16_t size, usb_timeout_t timeout) usb_control_msg() argument
1879 usb_bulk_msg(struct usb_device *udev, struct usb_host_endpoint *uhe, void *data, int len, uint16_t *pactlen, usb_timeout_t timeout) usb_bulk_msg() argument
[all...]
/third_party/mesa3d/src/broadcom/compiler/
H A Dv3d_compiler.h256 * has the pointer to the indirect texture state. Our data[] field
285 /* Returns the base offset of the SSBO given by the data value. */
288 /* Returns the size of the SSBO or UBO given by the data value. */
292 /* Sizes (in pixels) of a shader image given by the data value. */
306 * selected by the data value.
311 * selected by the data value.
357 static inline uint32_t v3d_unit_data_get_unit(uint32_t data)
359 return data >> 24;
362 static inline uint32_t v3d_unit_data_get_offset(uint32_t data)
364 return data
[all...]
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_meta_etc_decode.c177 input_img_2d->data.descriptor_set = 0; in build_shader()
178 input_img_2d->data.binding = 0; in build_shader()
182 input_img_2d->data.descriptor_set = 0; in build_shader()
183 input_img_2d->data.binding = 0; in build_shader()
187 output_img_2d->data.descriptor_set = 0; in build_shader()
188 output_img_2d->data.binding = 1; in build_shader()
192 output_img_3d->data.descriptor_set = 0; in build_shader()
193 output_img_3d->data.binding = 1; in build_shader()
H A Dradv_meta_resolve_cs.c74 input_img->data.descriptor_set = 0; in build_resolve_compute_shader()
75 input_img->data.binding = 0; in build_resolve_compute_shader()
78 output_img->data.descriptor_set = 0; in build_resolve_compute_shader()
79 output_img->data.binding = 1; in build_resolve_compute_shader()
146 input_img->data.descriptor_set = 0; in build_depth_stencil_resolve_compute_shader()
147 input_img->data.binding = 0; in build_depth_stencil_resolve_compute_shader()
150 output_img->data.descriptor_set = 0; in build_depth_stencil_resolve_compute_shader()
151 output_img->data.binding = 1; in build_depth_stencil_resolve_compute_shader()
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_inst.h48 uint64_t data[2]; member
1292 return (inst->data[word] >> low) & mask; in brw_inst_bits()
1316 inst->data[word] = (inst->data[word] & ~mask) | (value << low); in brw_inst_set_bits()
1329 uint64_t data; member
1342 return (inst->data >> low) & mask; in brw_compact_inst_bits()
1359 inst->data = (inst->data & ~mask) | (value << low); in brw_compact_inst_set_bits()
/third_party/node/deps/openssl/config/archs/darwin-i386-cc/no-asm/include/openssl/
H A Dbio.h92 # define BIO_CTRL_PENDING 10/* opt - is their more data buffered */
130 # define BIO_CTRL_DGRAM_SET_PEER 44/* Destination for the data */
204 * BIO_FLAGS_MEM_RDONLY means we shouldn't free up or change the data in any way;
205 * BIO_FLAGS_NONCLEAR_RST means we shouldn't clear data on reset.
391 # define BIO_C_SET_BUFF_READ_DATA 122/* data to read first */
609 int BIO_set_ex_data(BIO *bio, int idx, void *data);
641 int BIO_read(BIO *b, void *data, int dlen);
642 int BIO_read_ex(BIO *b, void *data, size_t dlen, size_t *readbytes);
645 int BIO_write(BIO *b, const void *data, int dlen);
646 int BIO_write_ex(BIO *b, const void *data, size_
[all...]
/third_party/node/deps/openssl/config/archs/linux-aarch64/no-asm/include/openssl/
H A Dbio.h92 # define BIO_CTRL_PENDING 10/* opt - is their more data buffered */
130 # define BIO_CTRL_DGRAM_SET_PEER 44/* Destination for the data */
204 * BIO_FLAGS_MEM_RDONLY means we shouldn't free up or change the data in any way;
205 * BIO_FLAGS_NONCLEAR_RST means we shouldn't clear data on reset.
391 # define BIO_C_SET_BUFF_READ_DATA 122/* data to read first */
609 int BIO_set_ex_data(BIO *bio, int idx, void *data);
641 int BIO_read(BIO *b, void *data, int dlen);
642 int BIO_read_ex(BIO *b, void *data, size_t dlen, size_t *readbytes);
645 int BIO_write(BIO *b, const void *data, int dlen);
646 int BIO_write_ex(BIO *b, const void *data, size_
[all...]

Completed in 49 milliseconds

1...<<381382383384385386387388389390>>...642