/third_party/ffmpeg/libavcodec/ |
H A D | roqvideo.c | 44 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 D | nellymoserdec.c | 68 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 D | jmemmgr.c | 645 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 D | pcre2_extuni.c | 111 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 D | utf8.c | 258 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...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_dblur.c | 215 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 D | vf_gblur.c | 237 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 D | vf_colortemperature.c | 119 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 D | vf_colorcontrast.c | 104 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 D | vf_vibrance.c | 78 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 D | atomics.cpp | 54 void *bptr = b; in main() local 62 spirv_cross_set_resource(shader, 0, 1, &bptr, sizeof(bptr)); in main()
|
H A D | shared.cpp | 53 void *bptr = b; in main() local 60 spirv_cross_set_resource(shader, 0, 1, &bptr, sizeof(bptr)); in main()
|
H A D | multiply.cpp | 55 void *bptr = b; in main() local 63 spirv_cross_set_resource(shader, 0, 1, &bptr, sizeof(bptr)); in main()
|
/third_party/ltp/tools/sparse/sparse-src/validation/ |
H A D | builtin-atomic-clear.c | 1 void foo(void *ptr, _Bool *bptr, volatile void *vptr, volatile _Bool *vbptr, int mo) in foo() argument 4 __atomic_clear(bptr, mo); in foo()
|
H A D | enum-typecheck.c | 24 enum bad *bptr = &g; variable
|
/third_party/benchmark/test/ |
H A D | donotoptimize_test.cc | 49 char* bptr = &buffer1024[0]; in main() local 50 benchmark::DoNotOptimize(bptr); in main()
|
/foundation/communication/wifi/wifi/utils/src/ |
H A D | wifi_common_util.cpp | 566 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 D | x86_64-mont.pl | 826 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...] |
H A D | armv4-mont.pl | 311 my ($rptr,$aptr,$bptr,$nptr,$n0,$num)=map("r$_",(0..5)); 333 vld1.32 {${Bi}[0]}, [$bptr,:32]! 386 vld1.32 {${Bi}[0]}, [$bptr,:32]! 477 vld1.32 {${Bi}[0]},[$bptr,:32]! @ *b++ 500 vld1.32 {${Bi}[0]},[$bptr,:32]! @ *b++ 690 add $bptr,sp,$num,lsl#2 699 teq $aptr,$bptr @ preserves carry 706 sub r11,$bptr,r11 @ this is num*4 710 mov $nptr,$bptr @ second 3/4th of frame 738 teq $aptr,$bptr [all...] |
H A D | x86_64-mont5.pl | 1090 my $bptr="%rdx"; # const void *table, 1198 movq $bptr,%xmm4 1212 movq %xmm4,$bptr 2245 my ($aptr, $bptr, $nptr, $tptr, $mi, $bi, $zero, $num)= 2247 my $rptr=$bptr; 2254 lea 128($bp),$bptr # size optimization 2306 pand `16*($i+0)-128`($bptr),%xmm0 # while it's still in register 2307 pand `16*($i+1)-128`($bptr),%xmm1 2308 pand `16*($i+2)-128`($bptr),%xmm2 2310 pand `16*($i+3)-128`($bptr), [all...] |
H A D | ia64-mont.pl | 103 rptr=r8; aptr=r9; bptr=r14; nptr=r15; 125 $ADDP bptr=0,in2 133 { .mmi; ldf8 bi=[bptr],8 // (*bp++) 215 { .mmi; ldf8 bi=[bptr],8 // (*bp++) 349 mov bptr=tptr 357 (p16) ld8 t[0]=[bptr],8 427 $ADDP bptr=0,in2 } 431 { .mmi; ldf8 bj[7]=[bptr],16 // bp[0] 444 { .mfi; (p4)ldf8 bj[5]=[bptr],16 // bp[2] 467 { .mfi; (p8)ldf8 bj[3]=[bptr],1 [all...] |
/third_party/openssl/crypto/bn/asm/ |
H A D | x86_64-mont.pl | 826 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...] |
H A D | armv4-mont.pl | 311 my ($rptr,$aptr,$bptr,$nptr,$n0,$num)=map("r$_",(0..5)); 333 vld1.32 {${Bi}[0]}, [$bptr,:32]! 386 vld1.32 {${Bi}[0]}, [$bptr,:32]! 477 vld1.32 {${Bi}[0]},[$bptr,:32]! @ *b++ 500 vld1.32 {${Bi}[0]},[$bptr,:32]! @ *b++ 690 add $bptr,sp,$num,lsl#2 699 teq $aptr,$bptr @ preserves carry 706 sub r11,$bptr,r11 @ this is num*4 710 mov $nptr,$bptr @ second 3/4th of frame 738 teq $aptr,$bptr [all...] |
H A D | x86_64-mont5.pl | 1090 my $bptr="%rdx"; # const void *table, 1198 movq $bptr,%xmm4 1212 movq %xmm4,$bptr 2245 my ($aptr, $bptr, $nptr, $tptr, $mi, $bi, $zero, $num)= 2247 my $rptr=$bptr; 2254 lea 128($bp),$bptr # size optimization 2306 pand `16*($i+0)-128`($bptr),%xmm0 # while it's still in register 2307 pand `16*($i+1)-128`($bptr),%xmm1 2308 pand `16*($i+2)-128`($bptr),%xmm2 2310 pand `16*($i+3)-128`($bptr), [all...] |
H A D | ia64-mont.pl | 103 rptr=r8; aptr=r9; bptr=r14; nptr=r15; 125 $ADDP bptr=0,in2 133 { .mmi; ldf8 bi=[bptr],8 // (*bp++) 215 { .mmi; ldf8 bi=[bptr],8 // (*bp++) 349 mov bptr=tptr 357 (p16) ld8 t[0]=[bptr],8 427 $ADDP bptr=0,in2 } 431 { .mmi; ldf8 bj[7]=[bptr],16 // bp[0] 444 { .mfi; (p4)ldf8 bj[5]=[bptr],16 // bp[2] 467 { .mfi; (p8)ldf8 bj[3]=[bptr],1 [all...] |