Home
last modified time | relevance | path

Searched refs:data_buf (Results 1 - 20 of 20) sorted by relevance

/third_party/ffmpeg/libavfilter/
H A Dvf_vif.c50 float *data_buf[NUM_DATA_BUFS]; member
290 float *const data_buf[NUM_DATA_BUFS], float **temp, in compute_vif2()
294 float *ref_scale = data_buf[0]; in compute_vif2()
295 float *main_scale = data_buf[1]; in compute_vif2()
296 float *ref_sq = data_buf[2]; in compute_vif2()
297 float *main_sq = data_buf[3]; in compute_vif2()
298 float *ref_main = data_buf[4]; in compute_vif2()
299 float *mu1 = data_buf[5]; in compute_vif2()
300 float *mu2 = data_buf[6]; in compute_vif2()
301 float *mu1_sq = data_buf[ in compute_vif2()
287 compute_vif2(AVFilterContext *ctx, const float *ref, const float *main, int w, int h, int ref_stride, int main_stride, float *score, float *const data_buf[NUM_DATA_BUFS], float **temp, int gnb_threads) compute_vif2() argument
[all...]
H A Dvif.h30 float *data_buf[13], float **temp, int nb_threads);
/third_party/ltp/testcases/kernel/syscalls/statx/
H A Dstatx02.c108 char data_buf[SIZE] = "LinusTorvalds"; in setup() local
111 SAFE_WRITE(SAFE_WRITE_ANY, file_fd, data_buf, sizeof(data_buf)); in setup()
/third_party/vk-gl-cts/external/openglcts/modules/gles32/
H A Des32cCopyImageTests.cpp136 std::vector<int> data_buf(TEXTURE_WIDTH * TEXTURE_HEIGHT, 1); in iterate()
137 m_dst_tex_name = createTexture(&data_buf[0], GL_NEAREST_MIPMAP_LINEAR, GL_LINEAR); in iterate()
138 std::fill(data_buf.begin(), data_buf.end(), 0); in iterate()
139 m_src_tex_name = createTexture(&data_buf[0], GL_NEAREST_MIPMAP_LINEAR, GL_LINEAR); in iterate()
/third_party/FreeBSD/sys/dev/usb/storage/
H A Dumass.c2784 uint8_t *data_buf = buf; in umass_read10() local
2796 if (((uintptr_t)data_buf & (USB_CACHE_ALIGN_SIZE - 1)) != 0) in umass_read10()
2798 data_buf = (uint8_t *)memalign(USB_CACHE_ALIGN_SIZE, SKB_DATA_ALIGN(nsectors * blocksize)); in umass_read10()
2799 if (data_buf == NULL) { in umass_read10()
2809 ret = umass_command_start(sc, DIR_IN, (void *)data_buf, blocksize * nsectors, 0, in umass_read10()
2813 free(data_buf); in umass_read10()
2819 ret = memcpy_s(buf, nsectors * blocksize, data_buf, blocksize * nsectors - sc->data_ccb->csio.resid); in umass_read10()
2822 LOS_ArchCopyToUser(buf, data_buf, blocksize * nsectors - sc->data_ccb->csio.resid) : ERANGE_AND_RESET); in umass_read10()
2824 free(data_buf); in umass_read10()
2843 uint8_t *data_buf in umass_read16() local
2902 uint8_t *data_buf = (uint8_t *)buf; umass_write10() local
2957 uint8_t *data_buf = (uint8_t *)buf; umass_write16() local
[all...]
/third_party/rust/crates/rust-openssl/openssl/src/
H A Dsign.rs352 /// Signs the data in `data_buf` and writes the signature into the buffer `sig_buf`, returning the
367 data_buf: &[u8], in sign_oneshot()
375 data_buf.as_ptr() as *const _, in sign_oneshot()
376 data_buf.len(), in sign_oneshot()
386 pub fn sign_oneshot_to_vec(&mut self, data_buf: &[u8]) -> Result<Vec<u8>, ErrorStack> { in sign_oneshot_to_vec()
388 let len = self.sign_oneshot(&mut sig_buf, data_buf)?; in sign_oneshot_to_vec()
/third_party/ffmpeg/libavcodec/
H A Dcbs.c795 AVBufferRef *data_buf, in cbs_insert_unit_data()
804 if (data_buf) in cbs_insert_unit_data()
805 data_ref = av_buffer_ref(data_buf); in cbs_insert_unit_data()
809 if (!data_buf) in cbs_insert_unit_data()
832 AVBufferRef *data_buf) in ff_cbs_append_unit_data()
835 data, data_size, data_buf, in ff_cbs_append_unit_data()
792 cbs_insert_unit_data(CodedBitstreamFragment *frag, CodedBitstreamUnitType type, uint8_t *data, size_t data_size, AVBufferRef *data_buf, int position) cbs_insert_unit_data() argument
829 ff_cbs_append_unit_data(CodedBitstreamFragment *frag, CodedBitstreamUnitType type, uint8_t *data, size_t data_size, AVBufferRef *data_buf) ff_cbs_append_unit_data() argument
H A Dcbs.h398 * If data_buf is not supplied then data must have been allocated with
405 AVBufferRef *data_buf);
/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/
H A Dcipher_aes_ocb.h35 unsigned char data_buf[OCB_MAX_DATA_LEN]; /* Store partial data blocks */ member
H A Dcipher_aes_ocb.c254 buf = ctx->data_buf; in aes_ocb_block_update()
280 if (!aes_generic_ocb_cipher(ctx, ctx->data_buf, out, ctx->data_buf_len)) in aes_ocb_block_final()
/third_party/openssl/providers/implementations/ciphers/
H A Dcipher_aes_ocb.h35 unsigned char data_buf[OCB_MAX_DATA_LEN]; /* Store partial data blocks */ member
H A Dcipher_aes_ocb.c254 buf = ctx->data_buf; in aes_ocb_block_update()
280 if (!aes_generic_ocb_cipher(ctx, ctx->data_buf, out, ctx->data_buf_len)) in aes_ocb_block_final()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cCopyImageTests.cpp5770 std::vector<int> data_buf(width * height, 1); in iterate()
5771 m_dst_tex_name = createTexture(width, height, test_case.m_internal_format, test_case.m_type, &data_buf[0], in iterate()
5773 std::fill(data_buf.begin(), data_buf.end(), 2); in iterate()
5774 m_src_tex_name = createTexture(width, height, test_case.m_internal_format, test_case.m_type, &data_buf[0], in iterate()
5787 std::fill(data_buf.begin(), data_buf.end(), 3); in iterate()
5792 gl.getTexImage(GL_TEXTURE_2D, 0, GL_RED_INTEGER, GL_UNSIGNED_INT, &data_buf[0]); in iterate()
5795 if ((data_buf[0] == 2) && (std::count(data_buf in iterate()
[all...]
/third_party/backends/sanei/
H A Dsanei_scsi.c3259 char *data_buf; in sanei_scsi_cmd2() local
3284 data_buf = ((char *) (dst)); in sanei_scsi_cmd2()
3290 data_buf = ((char *) (src)); in sanei_scsi_cmd2()
3296 data_buf = NULL; in sanei_scsi_cmd2()
3305 /* data_ptr */ (u_int8_t *) data_buf, in sanei_scsi_cmd2()
4644 scmd.data_buf = dst; in sanei_scsi_cmd2()
4651 scmd.data_buf = (char *) src; in sanei_scsi_cmd2()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
H A Dieee802_11.c2977 u8 *data_buf = NULL; in handle_auth_pasn_resp() local
3067 data_buf = os_zalloc(rsn_ie[1] + 2 + rsnxe_ie[1] + 2); in handle_auth_pasn_resp()
3068 if (!data_buf) in handle_auth_pasn_resp()
3071 os_memcpy(data_buf, rsn_ie, rsn_ie[1] + 2); in handle_auth_pasn_resp()
3072 os_memcpy(data_buf + rsn_ie[1] + 2, rsnxe_ie, rsnxe_ie[1] + 2); in handle_auth_pasn_resp()
3074 data = data_buf; in handle_auth_pasn_resp()
3082 os_free(data_buf); in handle_auth_pasn_resp()
/third_party/node/deps/openssl/openssl/crypto/evp/
H A De_aes.c110 unsigned char data_buf[16]; /* Store partial data blocks */ member
3910 buf = octx->data_buf; in aes_ocb_cipher()
3994 if (!CRYPTO_ocb128_encrypt(&octx->ocb, octx->data_buf, out, in aes_ocb_cipher()
3998 if (!CRYPTO_ocb128_decrypt(&octx->ocb, octx->data_buf, out, in aes_ocb_cipher()
/third_party/openssl/crypto/evp/
H A De_aes.c110 unsigned char data_buf[16]; /* Store partial data blocks */ member
3916 buf = octx->data_buf; in aes_ocb_cipher()
4000 if (!CRYPTO_ocb128_encrypt(&octx->ocb, octx->data_buf, out, in aes_ocb_cipher()
4004 if (!CRYPTO_ocb128_decrypt(&octx->ocb, octx->data_buf, out, in aes_ocb_cipher()
/third_party/mesa3d/src/imgui/
H A Dimgui_widgets.cpp2627 char data_buf[32];
2629 DataTypeFormatString(data_buf, IM_ARRAYSIZE(data_buf), data_type, data_ptr, format);
2630 ImStrTrimBlanks(data_buf);
2632 bool value_changed = InputTextEx(label, data_buf, IM_ARRAYSIZE(data_buf), bb.GetSize(), flags);
2640 return DataTypeApplyOpFromText(data_buf, g.InputTextState.InitialText.Data, data_type, data_ptr, NULL);
/third_party/skia/third_party/externals/imgui/
H A Dimgui_widgets.cpp3382 char data_buf[32];
3384 DataTypeFormatString(data_buf, IM_ARRAYSIZE(data_buf), data_type, p_data, format);
3385 ImStrTrimBlanks(data_buf);
3390 if (TempInputText(bb, id, label, data_buf, IM_ARRAYSIZE(data_buf), flags))
3398 DataTypeApplyOpFromText(data_buf, g.InputTextState.InitialTextA.Data, data_type, p_data, NULL);
/third_party/rust/crates/libc/src/
H A Dpsp.rs2359 pub data_buf: *mut c_void,

Completed in 76 milliseconds