Searched refs:intbuf (Results 1 – 5 of 5) sorted by relevance
/external/llvm-project/llvm/test/Transforms/InstCombine/ |
D | memcmp-constant-fold.ll | 54 @intbuf = private unnamed_addr constant [2 x i32] [i32 0, i32 1], align 4 58 …nbounds ([2 x i32], [2 x i32]* @intbuf, i64 0, i64 1) to i8*), i8* nonnull dereferenceable(3) bitc… 62 … ([2 x i32], [2 x i32]* @intbuf, i64 0, i64 1) to i8*), i8* bitcast (i32* getelementptr inbounds (…
|
/external/gflags/src/ |
D | gflags.cc | 371 char intbuf[64]; // enough to hold even the biggest number in ToString() local 376 snprintf(intbuf, sizeof(intbuf), "%" PRId32, VALUE_AS(int32)); in ToString() 377 return intbuf; in ToString() 379 snprintf(intbuf, sizeof(intbuf), "%" PRIu32, VALUE_AS(uint32)); in ToString() 380 return intbuf; in ToString() 382 snprintf(intbuf, sizeof(intbuf), "%" PRId64, VALUE_AS(int64)); in ToString() 383 return intbuf; in ToString() 385 snprintf(intbuf, sizeof(intbuf), "%" PRIu64, VALUE_AS(uint64)); in ToString() 386 return intbuf; in ToString() 388 snprintf(intbuf, sizeof(intbuf), "%.17g", VALUE_AS(double)); in ToString() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_resize.c | 427 uint8_t *intbuf = (uint8_t *)calloc(width2 * height, sizeof(*intbuf)); in vp9_resize_plane() local 432 if (intbuf == NULL || tmpbuf == NULL || arrbuf == NULL || arrbuf2 == NULL) in vp9_resize_plane() 439 resize_multistep(input + in_stride * i, width, intbuf + width2 * i, width2, in vp9_resize_plane() 442 fill_col_to_arr(intbuf + i, width2, height, arrbuf); in vp9_resize_plane() 448 free(intbuf); in vp9_resize_plane() 718 uint16_t *intbuf = (uint16_t *)malloc(sizeof(uint16_t) * width2 * height); in vp9_highbd_resize_plane() local 723 if (intbuf == NULL || tmpbuf == NULL || arrbuf == NULL || arrbuf2 == NULL) in vp9_highbd_resize_plane() 731 intbuf + width2 * i, width2, tmpbuf, bd); in vp9_highbd_resize_plane() 734 highbd_fill_col_to_arr(intbuf + i, width2, height, arrbuf); in vp9_highbd_resize_plane() 741 free(intbuf); in vp9_highbd_resize_plane()
|
/external/llvm-project/clang/test/Sema/ |
D | overloadable.c | 131 int intbuf[1]; in incompatible_pointer_type_conversions() local 137 …foo(intbuf); // expected-error{{call to 'foo' is ambiguous}} expected-note@-4{{candidate function}… in incompatible_pointer_type_conversions() 143 …bar(intbuf); // expected-error{{call to 'bar' is ambiguous}} expected-note@-4{{candidate function}… in incompatible_pointer_type_conversions()
|
/external/libaom/libaom/av1/common/ |
D | resize.c | 648 uint8_t *intbuf = (uint8_t *)aom_malloc(sizeof(uint8_t) * width2 * height); in av1_resize_plane() local 653 if (intbuf == NULL || tmpbuf == NULL || arrbuf == NULL || arrbuf2 == NULL) in av1_resize_plane() 660 resize_multistep(input + in_stride * i, width, intbuf + width2 * i, width2, in av1_resize_plane() 663 fill_col_to_arr(intbuf + i, width2, height, arrbuf); in av1_resize_plane() 669 aom_free(intbuf); in av1_resize_plane() 679 double *intbuf = (double *)aom_malloc(sizeof(double) * width2 * height); in av1_upscale_plane_double_prec() local 682 if (intbuf == NULL || arrbuf == NULL || arrbuf2 == NULL) goto Error; in av1_upscale_plane_double_prec() 689 intbuf + width2 * i, width2); in av1_upscale_plane_double_prec() 691 fill_col_to_arr_double_prec(intbuf + i, width2, height, arrbuf); in av1_upscale_plane_double_prec() 697 aom_free(intbuf); in av1_upscale_plane_double_prec() [all …]
|