Searched refs:dst_max (Results 1 - 7 of 7) sorted by relevance
/third_party/ntfs-3g/libntfs-3g/ |
H A D | runlist.c | 1420 * @dst_max: pointer to last byte of destination buffer for bounds checking 1435 int ntfs_write_significant_bytes(u8 *dst, const u8 *dst_max, const s64 n) in ntfs_write_significant_bytes() argument 1441 if (dst > dst_max) in ntfs_write_significant_bytes() 1446 if (dst > dst_max) in ntfs_write_significant_bytes() 1494 u8 *dst_max, *dst_next; in ntfs_mapping_pairs_build() local 1515 * @dst_max is used for bounds checking in in ntfs_mapping_pairs_build() 1518 dst_max = dst + dst_len - 1; in ntfs_mapping_pairs_build() 1529 len_len = ntfs_write_significant_bytes(dst + 1, dst_max, in ntfs_mapping_pairs_build() 1548 len_len, dst_max, prev_lcn); in ntfs_mapping_pairs_build() 1554 if (dst_next > dst_max) in ntfs_mapping_pairs_build() [all...] |
/third_party/mesa3d/src/util/format/ |
H A D | u_format_pack.py | 278 dst_max = dst_channel.max() 282 dst_max_native = native_to_constant(src_channel, value_to_native(src_channel, dst_max)) 284 if src_min < dst_min and src_max > dst_max: 287 if src_max > dst_max:
|
/third_party/ntfs-3g/include/ntfs-3g/ |
H A D | runlist.h | 73 extern int ntfs_write_significant_bytes(u8 *dst, const u8 *dst_max,
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_conv.c | 824 double dst_max = lp_const_max(dst_type); in lp_build_conv() local 838 if(src_max > dst_max) { in lp_build_conv() 839 if(dst_max == 1.0) in lp_build_conv() 842 thres = lp_build_const_vec(gallivm, src_type, dst_max); in lp_build_conv()
|
H A D | lp_bld_pack.c | 805 LLVMValueRef dst_max = lp_build_const_int_vec(gallivm, src_type, in lp_build_packs2() local 808 lo = lp_build_min(&bld, lo, dst_max); in lp_build_packs2() 809 hi = lp_build_min(&bld, hi, dst_max); in lp_build_packs2()
|
/third_party/mesa3d/src/freedreno/ir3/ |
H A D | ir3_ra_validate.c | 142 unsigned dst_max = ra_reg_get_physreg(dst) + reg_size(dst); in validate_simple() local 143 validate_assert(ctx, dst_max <= get_file_size(ctx, dst)); in validate_simple()
|
/third_party/skia/src/ports/ |
H A D | SkTypeface_mac_ct.cpp | 289 static D map(S value, S src_min, S src_max, D dst_min, D dst_max) { in map() 291 SkASSERT(dst_min <= dst_max); in map() 292 return C()(dst_min + (((value - src_min) * (dst_max - dst_min)) / (src_max - src_min))); in map()
|
Completed in 10 milliseconds