Home
last modified time | relevance | path

Searched refs:bptr (Results 1 - 25 of 66) sorted by relevance

123

/third_party/ffmpeg/libavcodec/
H A Droqvideo.c44 unsigned char *bptr; in ff_apply_vector_2x2() local
50 bptr = ri->current_frame->data[0] + boffs; in ff_apply_vector_2x2()
51 bptr[0 ] = cell->y[0]; in ff_apply_vector_2x2()
52 bptr[1 ] = cell->y[1]; in ff_apply_vector_2x2()
53 bptr[stride ] = cell->y[2]; in ff_apply_vector_2x2()
54 bptr[stride+1] = cell->y[3]; in ff_apply_vector_2x2()
59 bptr = ri->current_frame->data[1] + boffs; in ff_apply_vector_2x2()
60 bptr[0 ] = in ff_apply_vector_2x2()
61 bptr[1 ] = in ff_apply_vector_2x2()
62 bptr[strid in ff_apply_vector_2x2()
74 unsigned char *bptr; ff_apply_vector_4x4() local
[all...]
H A Dnellymoserdec.c68 float *aptr, *bptr, *pptr, val, pval; in nelly_decode_block() local
74 bptr = buf; in nelly_decode_block()
82 *bptr++ = val; in nelly_decode_block()
/third_party/skia/third_party/externals/libjpeg-turbo/
H A Djmemmgr.c645 jvirt_barray_ptr bptr; in realize_virt_arrays() local
665 for (bptr = mem->virt_barray_list; bptr != NULL; bptr = bptr->next) { in realize_virt_arrays()
666 if (bptr->mem_buffer == NULL) { /* if not realized yet */ in realize_virt_arrays()
667 size_t new_space = (long)bptr->rows_in_array * in realize_virt_arrays()
668 (long)bptr->blocksperrow * sizeof(JBLOCK); in realize_virt_arrays()
670 space_per_minheight += (long)bptr->maxaccess * in realize_virt_arrays()
671 (long)bptr in realize_virt_arrays()
1009 jvirt_barray_ptr bptr; free_pool() local
[all...]
/third_party/pcre2/pcre2/src/
H A Dpcre2_extuni.c111 PCRE2_SPTR bptr = eptr - 1; in extuni() local
112 if (utf) BACKCHAR(bptr); in extuni()
114 /* bptr is pointing to the left-hand character */ in extuni()
116 while (bptr > start_subject) in extuni()
118 bptr--; in extuni()
121 BACKCHAR(bptr); in extuni()
122 GETCHAR(c, bptr); in extuni()
125 c = *bptr; in extuni()
/third_party/pcre2/pcre2/maint/
H A Dutf8.c258 unsigned char *bptr; in main() local
286 bptr = buffer; in main()
289 while (bptr < buffend) in main()
294 int rc = utf82ord(bptr, buffend, &d, &offset); in main()
299 for (j = 0; j < rc; j++) printf("%02x ", bptr[j]); in main()
303 for (j = 0; j < rc; j++) printf("%c", bptr[j]); in main()
307 bptr += rc; in main()
312 for (j = 0; j < offset; j++) printf("%02x ", bptr[j]); in main()
314 bptr += offset; in main()
336 while (bptr < buffen in main()
[all...]
/kernel/linux/linux-5.10/arch/m68k/sun3/prom/
H A Dprintf.c27 char ch, *bptr; in prom_printf() local
39 bptr = ppbuf; in prom_printf()
44 putpacket(bptr, 1); in prom_printf()
47 while((ch = *(bptr++)) != 0) { in prom_printf()
/kernel/linux/linux-6.6/arch/m68k/sun3/prom/
H A Dprintf.c27 char ch, *bptr; in prom_printf() local
39 bptr = ppbuf; in prom_printf()
44 putpacket(bptr, 1); in prom_printf()
47 while((ch = *(bptr++)) != 0) { in prom_printf()
/third_party/ffmpeg/libavfilter/
H A Dvf_dblur.c215 float *bptr = s->buffer; in filter_frame() local
235 bptr[x] = src[x]; in filter_frame()
237 bptr += width; in filter_frame()
243 bptr[x] = src16[x]; in filter_frame()
245 bptr += width; in filter_frame()
251 memcpy(bptr, src32, width * sizeof(float)); in filter_frame()
253 bptr += width; in filter_frame()
260 bptr = s->buffer; in filter_frame()
264 dst[x] = av_clip_uint8(lrintf(bptr[x])); in filter_frame()
266 bptr in filter_frame()
[all...]
H A Dvf_gblur.c237 float *bptr = s->buffer; in filter_frame() local
253 av_image_copy_plane((uint8_t *)bptr, width * sizeof(float), in filter_frame()
259 bptr[x] = src[x]; in filter_frame()
261 bptr += width; in filter_frame()
267 bptr[x] = src16[x]; in filter_frame()
269 bptr += width; in filter_frame()
276 bptr = s->buffer; in filter_frame()
279 (uint8_t *)bptr, width * sizeof(float), in filter_frame()
284 dst[x] = lrintf(bptr[x]); in filter_frame()
285 bptr in filter_frame()
[all...]
H A Dvf_colortemperature.c119 uint8_t *bptr = frame->data[1] + slice_start * blinesize; in temperature_slice8() local
125 float b = bptr[x]; in temperature_slice8()
133 bptr[x] = av_clip_uint8(nb); in temperature_slice8()
138 bptr += blinesize; in temperature_slice8()
161 uint16_t *bptr = (uint16_t *)frame->data[1] + slice_start * blinesize; in temperature_slice16() local
167 float b = bptr[x]; in temperature_slice16()
175 bptr[x] = av_clip_uintp2_c(nb, depth); in temperature_slice16()
180 bptr += blinesize; in temperature_slice16()
H A Dvf_colorcontrast.c104 uint8_t *bptr = frame->data[1] + slice_start * blinesize; in colorcontrast_slice8() local
119 float b = bptr[x]; in colorcontrast_slice8()
132 bptr[x] = av_clip_uint8(nb); in colorcontrast_slice8()
137 bptr += blinesize; in colorcontrast_slice8()
158 uint16_t *bptr = (uint16_t *)frame->data[1] + slice_start * blinesize; in colorcontrast_slice16() local
173 float b = bptr[x]; in colorcontrast_slice16()
186 bptr[x] = av_clip_uintp2_c(nb, depth); in colorcontrast_slice16()
191 bptr += blinesize; in colorcontrast_slice16()
H A Dvf_vibrance.c78 uint8_t *bptr = frame->data[1] + slice_start * blinesize; in vibrance_slice8() local
84 float b = bptr[x] * scale; in vibrance_slice8()
99 bptr[x] = av_clip_uint8(b * 255.f); in vibrance_slice8()
104 bptr += blinesize; in vibrance_slice8()
137 uint16_t *bptr = (uint16_t *)frame->data[1] + slice_start * blinesize; in vibrance_slice16() local
143 float b = bptr[x] * scale; in vibrance_slice16()
158 bptr[x] = av_clip_uintp2_c(b * max, depth); in vibrance_slice16()
163 bptr += blinesize; in vibrance_slice16()
/third_party/skia/third_party/externals/spirv-cross/samples/cpp/
H A Datomics.cpp54 void *bptr = b; in main() local
62 spirv_cross_set_resource(shader, 0, 1, &bptr, sizeof(bptr)); in main()
H A Dshared.cpp53 void *bptr = b; in main() local
60 spirv_cross_set_resource(shader, 0, 1, &bptr, sizeof(bptr)); in main()
H A Dmultiply.cpp55 void *bptr = b; in main() local
63 spirv_cross_set_resource(shader, 0, 1, &bptr, sizeof(bptr)); in main()
/kernel/linux/linux-6.6/drivers/scsi/elx/libefc_sli/
H A Dsli4.c1424 struct sli4_bde *bptr; in sli_els_request64_wqe() local
1428 bptr = &els->els_request_payload; in sli_els_request64_wqe()
1433 bptr->bde_type_buflen = in sli_els_request64_wqe()
1437 bptr->u.data.low = sge[0].buffer_address_low; in sli_els_request64_wqe()
1438 bptr->u.data.high = sge[0].buffer_address_high; in sli_els_request64_wqe()
1442 bptr->bde_type_buflen = in sli_els_request64_wqe()
1446 bptr->u.blp.low = cpu_to_le32(lower_32_bits(sgl->phys)); in sli_els_request64_wqe()
1447 bptr->u.blp.high = cpu_to_le32(upper_32_bits(sgl->phys)); in sli_els_request64_wqe()
1568 struct sli4_bde *bptr; in sli_fcp_icmnd64_wqe() local
1579 bptr in sli_fcp_icmnd64_wqe()
1635 struct sli4_bde *bptr; sli_fcp_iread64_wqe() local
1738 struct sli4_bde *bptr; sli_fcp_iwrite64_wqe() local
1830 struct sli4_bde *bptr; sli_fcp_treceive64_wqe() local
1972 struct sli4_bde *bptr; sli_fcp_trsp64_wqe() local
2033 struct sli4_bde *bptr; sli_fcp_tsend64_wqe() local
2157 struct sli4_bde *bptr; sli_gen_request64_wqe() local
[all...]
/kernel/linux/linux-5.10/fs/
H A Dd_path.c84 char *bptr; in prepend_path() local
93 bptr = *buffer; in prepend_path()
109 bptr = *buffer; in prepend_path()
131 error = prepend_name(&bptr, &blen, &dentry->d_name); in prepend_path()
153 if (error >= 0 && bptr == *buffer) { in prepend_path()
157 *--bptr = '/'; in prepend_path()
159 *buffer = bptr; in prepend_path()
/third_party/ltp/tools/sparse/sparse-src/validation/
H A Dbuiltin-atomic-clear.c1 void foo(void *ptr, _Bool *bptr, volatile void *vptr, volatile _Bool *vbptr, int mo) in foo() argument
4 __atomic_clear(bptr, mo); in foo()
/third_party/benchmark/test/
H A Ddonotoptimize_test.cc49 char* bptr = &buffer1024[0]; in main() local
50 benchmark::DoNotOptimize(bptr); in main()
/foundation/communication/wifi/wifi/utils/src/
H A Dwifi_common_util.cpp566 BUF_MEM *bptr = nullptr; in EncodeBase64() local
567 BIO_get_mem_ptr(bio, &bptr); in EncodeBase64()
569 if (bptr != nullptr) { in EncodeBase64()
571 WIFI_LOGI("%{public}s: length is %{public}zu", __func__, bptr->length); in EncodeBase64()
572 outputBuffer.insert(outputBuffer.end(), bptr->data, bptr->data + bptr->length); in EncodeBase64()
573 outputBuffer[bptr->length] = 0; in EncodeBase64()
/third_party/node/deps/openssl/openssl/crypto/bn/asm/
H A Dx86_64-mont.pl826 my $bptr="%rdx"; # not used
1112 my ($aptr, $bptr, $nptr, $tptr, $mi, $bi, $zero, $num)=
1114 my $rptr=$bptr;
1116 lea 8($bp),$bptr
1124 mov $bptr,8(%rsp) # off-load &b[i]
1129 mov $mi,$bptr # borrow $bptr
1140 adcx %rax,$bptr # discarded
1146 mov 48(%rsp),$bptr # counter value
1197 dec $bptr # o
[all...]
/third_party/openssl/crypto/bn/asm/
H A Dx86_64-mont.pl826 my $bptr="%rdx"; # not used
1112 my ($aptr, $bptr, $nptr, $tptr, $mi, $bi, $zero, $num)=
1114 my $rptr=$bptr;
1116 lea 8($bp),$bptr
1124 mov $bptr,8(%rsp) # off-load &b[i]
1129 mov $mi,$bptr # borrow $bptr
1140 adcx %rax,$bptr # discarded
1146 mov 48(%rsp),$bptr # counter value
1197 dec $bptr # o
[all...]
/kernel/linux/linux-5.10/arch/parisc/kernel/
H A Dperf.c738 uint64_t *bptr; in perf_write_image() local
766 bptr = &buffer[0]; in perf_write_image()
772 tmp64 |= (~(*intrigue_bitmask++)) & *bptr; in perf_write_image()
773 *bptr++ = tmp64; in perf_write_image()
777 *bptr++ = *memaddr++; in perf_write_image()
/kernel/linux/linux-6.6/arch/parisc/kernel/
H A Dperf.c738 uint64_t *bptr; in perf_write_image() local
766 bptr = &buffer[0]; in perf_write_image()
772 tmp64 |= (~(*intrigue_bitmask++)) & *bptr; in perf_write_image()
773 *bptr++ = tmp64; in perf_write_image()
777 *bptr++ = *memaddr++; in perf_write_image()
/kernel/linux/linux-5.10/drivers/usb/storage/
H A Dalauda.c812 unsigned char *bptr, *cptr, *xptr; in alauda_write_lba() local
859 bptr = blockbuffer + (i * (pagesize + 64)); in alauda_write_lba()
860 cptr = bptr + pagesize; in alauda_write_lba()
861 nand_compute_ecc(bptr, ecc); in alauda_write_lba()
867 nand_compute_ecc(bptr + (pagesize / 2), ecc); in alauda_write_lba()
880 bptr = blockbuffer + (i * (pagesize + 64)); in alauda_write_lba()
881 cptr = bptr + pagesize; in alauda_write_lba()
882 memcpy(bptr, xptr, pagesize); in alauda_write_lba()
884 nand_compute_ecc(bptr, ecc); in alauda_write_lba()
886 nand_compute_ecc(bptr in alauda_write_lba()
[all...]

Completed in 19 milliseconds

123