Searched refs:highest_bit (Results 1 - 6 of 6) sorted by relevance
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | lossless_common.h | 101 const int highest_bit = BitsLog2Floor(--distance); in VP8LPrefixEncodeBitsNoLUT() local 102 const int second_highest_bit = (distance >> (highest_bit - 1)) & 1; in VP8LPrefixEncodeBitsNoLUT() 103 *extra_bits = highest_bit - 1; in VP8LPrefixEncodeBitsNoLUT() 104 *code = 2 * highest_bit + second_highest_bit; in VP8LPrefixEncodeBitsNoLUT() 110 const int highest_bit = BitsLog2Floor(--distance); in VP8LPrefixEncodeNoLUT() local 111 const int second_highest_bit = (distance >> (highest_bit - 1)) & 1; in VP8LPrefixEncodeNoLUT() 112 *extra_bits = highest_bit - 1; in VP8LPrefixEncodeNoLUT() 114 *code = 2 * highest_bit + second_highest_bit; in VP8LPrefixEncodeNoLUT()
|
/third_party/toybox/toys/other/ |
H A D | chrt.c | 5 * Note: -ibrfo flags sorted to match SCHED positions for highest_bit() 89 if (-1==(pol = highest_bit(toys.optflags&0x2f))) pol = SCHED_RR; in chrt_main()
|
/third_party/toybox/lib/ |
H A D | lib.h | 224 int highest_bit(unsigned long l);
|
H A D | lib.c | 633 int highest_bit(unsigned long l) in highest_bit() function
|
/third_party/toybox/porting/liteos_a/lib/ |
H A D | lib.h | 217 int highest_bit(unsigned long l);
|
/third_party/mesa3d/src/amd/llvm/ |
H A D | ac_llvm_build.c | 1866 LLVMValueRef highest_bit; in ac_build_umsb() local 1875 highest_bit = LLVMConstInt(ctx->i64, 63, false); in ac_build_umsb() 1881 highest_bit = LLVMConstInt(ctx->i32, 31, false); in ac_build_umsb() 1887 highest_bit = LLVMConstInt(ctx->i16, 15, false); in ac_build_umsb() 1893 highest_bit = LLVMConstInt(ctx->i8, 7, false); in ac_build_umsb() 1910 msb = LLVMBuildSub(ctx->builder, highest_bit, msb, ""); in ac_build_umsb()
|
Completed in 13 milliseconds