Home
last modified time | relevance | path

Searched refs:high32 (Results 1 – 8 of 8) sorted by relevance

/external/libsrtp2/crypto/kernel/
Dkey.c57 if (high32(s) == 0 && low32(s) < soft_limit) { in srtp_key_limit_set()
94 make64(high32(key->num_left) - 1, low32(key->num_left) - 1); in srtp_key_limit_update()
97 key->num_left = make64(high32(key->num_left), low32(key->num_left) - 1); in srtp_key_limit_update()
99 if (high32(key->num_left) != 0 || low32(key->num_left) >= soft_limit) { in srtp_key_limit_update()
113 if (low32(key->num_left) == 0 && high32(key->num_left == 0)) in srtp_key_limit_update()
/external/clang/lib/Headers/
D__clang_cuda_intrinsics.h287 inline __device__ unsigned __funnelshift_l(unsigned low32, unsigned high32, in __funnelshift_l() argument
292 : "r"(low32), "r"(high32), "r"(shiftWidth)); in __funnelshift_l()
295 inline __device__ unsigned __funnelshift_lc(unsigned low32, unsigned high32, in __funnelshift_lc() argument
300 : "r"(low32), "r"(high32), "r"(shiftWidth)); in __funnelshift_lc()
303 inline __device__ unsigned __funnelshift_r(unsigned low32, unsigned high32, in __funnelshift_r() argument
308 : "r"(low32), "r"(high32), "r"(shiftWidth)); in __funnelshift_r()
311 inline __device__ unsigned __funnelshift_rc(unsigned low32, unsigned high32, in __funnelshift_rc() argument
316 : "r"(low32), "r"(high32), "r"(shiftWidth)); in __funnelshift_rc()
/external/libsrtp2/crypto/replay/
Drdbx.c103 *pi = make64(high32(*pi) + (s > ~low32(*pi) ? 1 : 0), low32(*pi) + s); in srtp_index_advance()
127 uint32_t local_roc = ((high32(*local) << 16) | (low32(*local) >> 16)); in srtp_index_guess()
319 if (high32(rdbx->index) > 0 || low32(rdbx->index) > seq_num_median) in srtp_rdbx_estimate_index()
351 roc = ((high32(rdbx->index) << 16) | (low32(rdbx->index) >> 16)); in srtp_rdbx_get_roc()
/external/mesa3d/src/panfrost/bifrost/
Ddisassemble.c246 dump_pc_imm(FILE *fp, uint64_t imm, enum bi_constmod mod, bool high32) in dump_pc_imm() argument
264 high32 ? " >> 32" : ""); in dump_pc_imm()
267 if (high32) in dump_pc_imm()
273 fprintf(fp, "(pc + %d)", sx32[high32]); in dump_pc_imm()
294 …tic void dump_fau_src(FILE *fp, struct bifrost_regs srcs, struct bi_constants *consts, bool high32) in dump_fau_src() argument
298 fprintf(fp, "u%d.w%d", uniform, high32); in dump_fau_src()
304 dump_pc_imm(fp, imm, consts->mods[idx], high32); in dump_fau_src()
305 else if (high32) in dump_fau_src()
347 if (high32) in dump_fau_src()
/external/llvm-project/clang/lib/Headers/
D__clang_cuda_intrinsics.h451 inline __device__ unsigned __funnelshift_l(unsigned low32, unsigned high32, in __funnelshift_l() argument
456 : "r"(low32), "r"(high32), "r"(shiftWidth)); in __funnelshift_l()
459 inline __device__ unsigned __funnelshift_lc(unsigned low32, unsigned high32, in __funnelshift_lc() argument
464 : "r"(low32), "r"(high32), "r"(shiftWidth)); in __funnelshift_lc()
467 inline __device__ unsigned __funnelshift_r(unsigned low32, unsigned high32, in __funnelshift_r() argument
472 : "r"(low32), "r"(high32), "r"(shiftWidth)); in __funnelshift_r()
475 inline __device__ unsigned __funnelshift_rc(unsigned low32, unsigned high32, in __funnelshift_rc() argument
480 : "r"(low32), "r"(high32), "r"(shiftWidth)); in __funnelshift_rc()
/external/libsrtp2/crypto/include/
Dintegers.h103 extern uint32_t high32(uint64_t value);
Ddatatypes.h302 v = make64(htonl(low32(v)), htonl(high32(v))); in be64_to_cpu()
/external/libsrtp2/srtp/
Dsrtp.c1506 uint32_t local_roc = ((high32(*seq) << 16) | (low32(*seq) >> 16)); in srtp_calc_aead_iv()
1671 debug_print2(mod_srtp, "estimated u_packet index: %08x%08x", high32(*est), in srtp_get_est_pkt_index()
1760 debug_print2(mod_srtp, "estimated packet index: %08x%08x", high32(est), in srtp_protect_aead()
1773 make64((high32(est) << 16) | (low32(est) >> 16), low32(est) << 16)); in srtp_protect_aead()
1868 debug_print2(mod_srtp, "estimated u_packet index: %08x%08x", high32(est), in srtp_unprotect_aead()
1888 make64((high32(est) << 16) | (low32(est) >> 16), low32(est) << 16)); in srtp_unprotect_aead()
2234 debug_print2(mod_srtp, "estimated packet index: %08x%08x", high32(est), in srtp_protect_mki()
2252 make64((high32(est) << 16) | (low32(est) >> 16), low32(est) << 16)); in srtp_protect_mki()
2286 make64((high32(est) << 16) | (low32(est) >> 16), low32(est) << 16)); in srtp_protect_mki()
2462 debug_print2(mod_srtp, "estimated u_packet index: %08x%08x", high32(est), in srtp_unprotect_mki()
[all …]