Home
last modified time | relevance | path

Searched refs:count_hi (Results 1 – 14 of 14) sorted by relevance

/external/tensorflow/tensorflow/core/lib/random/
Dphilox_random.h145 uint32 count_hi = static_cast<uint32>(count >> 32); in Skip() local
149 ++count_hi; in Skip()
152 counter_[1] += count_hi; in Skip()
153 if (counter_[1] < count_hi) { in Skip()
/external/skqp/src/compute/hs/cuda/bench/
Dmain.c262 uint32_t const count_hi, in hs_bench() argument
272 if (count_hi <= 1) in hs_bench()
280 hs_pad(count_hi,&count_hi_padded_in,&count_hi_padded_out); in hs_bench()
303 hs_fill_rand(random_h,count_hi,hs_words); in hs_bench()
345 for (uint32_t count=count_lo; count<=count_hi; count+=count_step) in hs_bench()
566 uint32_t const count_hi = (argc <= 4) ? count_lo : strtoul(argv[4],NULL,0); in main() local
587 count_hi, in main()
/external/skqp/src/compute/hs/cl/bench/
Dmain.c309 uint32_t const count_hi, in hs_bench() argument
318 if (count_hi <= 1) in hs_bench()
326 hs_cl_pad(hs,count_hi,&count_hi_padded_in,&count_hi_padded_out); in hs_bench()
370 hs_fill_rand(random_h,count_hi,hs_words); in hs_bench()
381 for (uint32_t count=count_lo; count<=count_hi; count+=count_step) in hs_bench()
696 uint32_t const count_hi = (argc <= 3) ? count_lo : strtoul(argv[3],NULL,0); in main() local
754 count_hi, in main()
/external/python/cpython2/Modules/
Dshamodule.c49 SHA_INT32 count_lo, count_hi; /* 64-bit bit count */ member
79 dest->count_hi = src->count_hi; in SHAcopy()
232 sha_info->count_hi = 0L; in sha_init()
246 ++sha_info->count_hi; in sha_update()
249 sha_info->count_hi += (SHA_INT32) count >> 29; in sha_update()
285 hi_bit_count = sha_info->count_hi; in sha_final()
Dsha256module.c50 SHA_INT32 count_lo, count_hi; /* 64-bit bit count */ member
82 dest->count_hi = src->count_hi; in SHAcopy()
240 sha_info->count_hi = 0L; in sha_init()
258 sha_info->count_hi = 0L; in sha224_init()
274 ++sha_info->count_hi; in sha_update()
277 sha_info->count_hi += (SHA_INT32) count >> 29; in sha_update()
313 hi_bit_count = sha_info->count_hi; in sha_final()
Dsha512module.c52 SHA_INT32 count_lo, count_hi; /* 64-bit bit count */ member
92 dest->count_hi = src->count_hi; in SHAcopy()
266 sha_info->count_hi = 0L; in sha512_init()
284 sha_info->count_hi = 0L; in sha384_init()
300 ++sha_info->count_hi; in sha512_update()
303 sha_info->count_hi += (SHA_INT32) count >> 29; in sha512_update()
339 hi_bit_count = sha_info->count_hi; in sha512_final()
/external/python/cpython3/Modules/
Dsha256module.c46 SHA_INT32 count_lo, count_hi; /* 64-bit bit count */ member
72 dest->count_hi = src->count_hi; in SHAcopy()
231 sha_info->count_hi = 0L; in sha_init()
248 sha_info->count_hi = 0L; in sha224_init()
264 ++sha_info->count_hi; in sha_update()
267 sha_info->count_hi += (SHA_INT32) count >> 29; in sha_update()
303 hi_bit_count = sha_info->count_hi; in sha_final()
Dsha512module.c47 SHA_INT32 count_lo, count_hi; /* 64-bit bit count */ member
73 dest->count_hi = src->count_hi; in SHAcopy()
248 sha_info->count_hi = 0L; in sha512_init()
265 sha_info->count_hi = 0L; in sha384_init()
281 ++sha_info->count_hi; in sha512_update()
284 sha_info->count_hi += (SHA_INT32) count >> 29; in sha512_update()
320 hi_bit_count = sha_info->count_hi; in sha512_final()
/external/skqp/src/compute/hs/vk/
Dhs_vk.c468 uint32_t const count_hi) in hs_keyset_pre_fm() argument
470 uint32_t const vout_span = count_hi - count_lo; in hs_keyset_pre_fm()
488 uint32_t const count_hi) in hs_keyset_pre_bs() argument
490 uint32_t const vin_span = count_hi - count; in hs_keyset_pre_bs()
599 uint32_t const count_hi = is_in_place ? count_padded_out : count_padded_in; in hs_vk_sort() local
600 bool const is_pre_sort_reqd = count_hi > count; in hs_vk_sort()
616 hs_keyset_pre_bs(hs,&state,count,count_hi); in hs_vk_sort()
/external/skqp/src/compute/hs/cl/
Dhs_cl.c632 uint32_t const count_hi, in hs_keyset_pre_sort() argument
637 uint32_t const vin_span = count_hi - count; in hs_keyset_pre_sort()
662 uint32_t const count_hi, in hs_keyset_pre_merge() argument
666 uint32_t const vout_span = count_hi - count_lo; in hs_keyset_pre_merge()
791 uint32_t const count_hi = is_in_place ? count_padded_out : count_padded_in; in hs_cl_sort() local
792 bool const is_pre_sort_keyset_reqd = count_hi > count; in hs_cl_sort()
799 count,count_hi, in hs_cl_sort()
/external/skqp/src/compute/hs/cuda/
Dhs_cuda.inl837 uint32_t const count_hi) argument
839 uint32_t const vout_span = count_hi - count_lo;
857 uint32_t const count_hi) argument
859 uint32_t const vin_span = count_hi - count;
899 uint32_t const count_hi = is_in_place ? count_padded_out : count_padded_in; local
900 bool const is_pre_sort_keyset_reqd = count_hi > count;
907 hs_keyset_pre_sort(&state,&bs,count,count_hi);
/external/skqp/src/compute/skc/platforms/cl_12/
Dextent_cl_12.c361 skc_uint const count_hi = count - count_max; in skc_extent_phrwg_tdrNs_snap_alloc() local
362 skc_uint const bytes_hi = count_hi * ring->size.elem; in skc_extent_phrwg_tdrNs_snap_alloc()
/external/ethtool/
Dmarvell.c47 u_int32_t count_hi; in dump_queue() member
65 d->count_hi, d->count_lo); in dump_queue()
/external/skqp/src/compute/hs/vk/bench/
Dmain.c536 uint32_t const count_hi = (argc <= 5) ? count_lo : strtoul(argv[ 5],NULL,0); in main() local
708 hs_vk_pad(hs,count_hi,&buffer_in_count,&buffer_out_count); in main()
910 for (uint32_t count=count_lo; count<=count_hi; count+=count_step) in main()