/external/iptables/include/linux/netfilter/ |
xt_iprange.h | 15 union nf_inet_addr dst_min, dst_max; member in struct:xt_iprange_mtinfo
|
/external/chromium_org/third_party/libusb/src/libusb/os/ |
windows_common.h | 43 #define safe_strcp(dst, dst_max, src, count) do {memcpy(dst, src, safe_min(count, dst_max)); \ 44 ((char*)dst)[safe_min(count, dst_max)-1] = 0;} while(0) 45 #define safe_strcpy(dst, dst_max, src) safe_strcp(dst, dst_max, src, safe_strlen(src)+1) 46 #define safe_strncat(dst, dst_max, src, count) strncat(dst, src, safe_min(count, dst_max - safe_strlen(dst) - 1)) 47 #define safe_strcat(dst, dst_max, src) safe_strncat(dst, dst_max, src, safe_strlen(src)+1)
|
/external/iptables/extensions/ |
libxt_iprange.c | 215 printf("-%s", xtables_ipaddr_to_numeric(&info->dst_max.in)); 241 printf("-%s", xtables_ip6addr_to_numeric(&info->dst_max.in6)); 277 printf("-%s", xtables_ipaddr_to_numeric(&info->dst_max.in)); 295 printf("-%s", xtables_ip6addr_to_numeric(&info->dst_max.in6));
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
lp_bld_conv.c | 515 double dst_max = lp_const_max(dst_type); local 529 if(src_max > dst_max) { 530 if(dst_max == 1.0) 533 thres = lp_build_const_vec(gallivm, src_type, dst_max);
|
lp_bld_pack.c | 526 LLVMValueRef dst_max = lp_build_const_int_vec(gallivm, src_type, ((unsigned long long)1 << dst_bits) - 1); local 528 lo = lp_build_min(&bld, lo, dst_max); 529 hi = lp_build_min(&bld, hi, dst_max);
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_format_pack.py | 254 dst_max = dst_channel.max() 258 dst_max_native = value_to_native(src_channel, dst_max) 260 if src_min < dst_min and src_max > dst_max: 263 if src_max > dst_max:
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_conv.c | 515 double dst_max = lp_const_max(dst_type); local 529 if(src_max > dst_max) { 530 if(dst_max == 1.0) 533 thres = lp_build_const_vec(gallivm, src_type, dst_max);
|
lp_bld_pack.c | 526 LLVMValueRef dst_max = lp_build_const_int_vec(gallivm, src_type, ((unsigned long long)1 << dst_bits) - 1); local 528 lo = lp_build_min(&bld, lo, dst_max); 529 hi = lp_build_min(&bld, hi, dst_max);
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_format_pack.py | 254 dst_max = dst_channel.max() 258 dst_max_native = value_to_native(src_channel, dst_max) 260 if src_min < dst_min and src_max > dst_max: 263 if src_max > dst_max:
|