/third_party/vixl/src/aarch64/ |
H A D | macro-assembler-aarch64.cc | 97 void LiteralPool::CheckEmitFor(size_t amount, EmitOption option) { in CheckEmitFor() argument 274 void VeneerPool::CheckEmitFor(size_t amount, EmitOption option) { in CheckEmitFor() argument 294 void VeneerPool::Emit(EmitOption option, size_t amount) { in Emit() argument 476 void MacroAssembler::CheckEmitFor(size_t amount) { in Emit() argument 266 ShouldEmitVeneer(int64_t first_unreacheable_pc, size_t amount) ShouldEmitVeneer() argument 482 CheckEmitPoolsFor(size_t amount) Emit() argument [all...] |
/kernel/linux/linux-5.10/net/packet/ |
H A D | af_packet.c | 4175 int amount = sk_wmem_alloc_get(sk); in packet_ioctl() local 4182 int amount = 0; in packet_ioctl() local
|
/kernel/linux/linux-5.10/net/sctp/ |
H A D | socket.c | 4805 unsigned int amount = 0; in sctp_ioctl() local
|
/kernel/linux/linux-5.10/drivers/gpu/drm/radeon/ |
H A D | radeon_mode.h | 318 uint16_t amount; member
|
/kernel/linux/linux-6.6/drivers/gpu/drm/radeon/ |
H A D | radeon_mode.h | 309 uint16_t amount; member
|
/kernel/linux/linux-6.6/net/packet/ |
H A D | af_packet.c | 4227 int amount = sk_wmem_alloc_get(sk); in packet_ioctl() local 4234 int amount = 0; in packet_ioctl() local
|
/kernel/linux/linux-6.6/net/core/ |
H A D | sock.c | 3166 void __sk_mem_reduce_allocated(struct sock *sk, int amount) in __sk_mem_reduce_allocated() argument 3183 void __sk_mem_reclaim(struct sock *sk, int amount) in __sk_mem_reclaim() argument
|
/kernel/linux/linux-6.6/net/mptcp/ |
H A D | protocol.c | 183 static void __mptcp_rmem_reclaim(struct sock *sk, int amount) in __mptcp_rmem_reclaim() argument 339 int amt, amount; in mptcp_rmem_schedule() local [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | Calendar.java | 2806 public void roll(int field, int amount) { in roll() argument 3185 add(int field, int amount) add() argument [all...] |
/third_party/node/deps/v8/src/wasm/baseline/ia32/ |
H A D | liftoff-assembler-ia32.h | 1469 EmitShiftOperation(LiftoffAssembler* assm, Register dst, Register src, Register amount, void (Assembler::*emit_shift)(Register)) EmitShiftOperation() argument 1505 emit_i32_shl(Register dst, Register src, Register amount) emit_i32_shl() argument 1510 emit_i32_shli(Register dst, Register src, int32_t amount) emit_i32_shli() argument 1516 emit_i32_sar(Register dst, Register src, Register amount) emit_i32_sar() argument 1521 emit_i32_sari(Register dst, Register src, int32_t amount) emit_i32_sari() argument 1527 emit_i32_shr(Register dst, Register src, Register amount) emit_i32_shr() argument 1532 emit_i32_shri(Register dst, Register src, int32_t amount) emit_i32_shri() argument 1699 Emit64BitShiftOperation( LiftoffAssembler* assm, LiftoffRegister dst, LiftoffRegister src, Register amount, void (TurboAssembler::*emit_shift)(Register, Register)) Emit64BitShiftOperation() argument 1737 emit_i64_shl(LiftoffRegister dst, LiftoffRegister src, Register amount) emit_i64_shl() argument 1743 emit_i64_shli(LiftoffRegister dst, LiftoffRegister src, int32_t amount) emit_i64_shli() argument 1756 emit_i64_sar(LiftoffRegister dst, LiftoffRegister src, Register amount) emit_i64_sar() argument 1762 emit_i64_sari(LiftoffRegister dst, LiftoffRegister src, int32_t amount) emit_i64_sari() argument 1775 emit_i64_shr(LiftoffRegister dst, LiftoffRegister src, Register amount) emit_i64_shr() argument 1781 emit_i64_shri(LiftoffRegister dst, LiftoffRegister src, int32_t amount) emit_i64_shri() argument [all...] |
/third_party/node/deps/v8/src/wasm/baseline/arm/ |
H A D | liftoff-assembler-arm.h | 187 I64Shiftop(LiftoffAssembler* assm, LiftoffRegister dst, LiftoffRegister src, Register amount) I64Shiftop() argument 1765 emit_i64_shl(LiftoffRegister dst, LiftoffRegister src, Register amount) emit_i64_shl() argument 1770 emit_i64_shli(LiftoffRegister dst, LiftoffRegister src, int32_t amount) emit_i64_shli() argument 1780 emit_i64_sar(LiftoffRegister dst, LiftoffRegister src, Register amount) emit_i64_sar() argument 1785 emit_i64_sari(LiftoffRegister dst, LiftoffRegister src, int32_t amount) emit_i64_sari() argument 1795 emit_i64_shr(LiftoffRegister dst, LiftoffRegister src, Register amount) emit_i64_shr() argument 1800 emit_i64_shri(LiftoffRegister dst, LiftoffRegister src, int32_t amount) emit_i64_shri() argument [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/ |
H A D | vktShaderRenderOperatorTests.cpp | 54 template<typename T> inline T leftShift (T value, int amount) { return value << amount; } in leftShift() argument 56 inline deUint32 rightShift (deUint32 value, int amount) { return value >> amount; } in rightShift() argument 57 inline int rightShift (int value, int amount) { return (value >> amount) | (value >= 0 ? 0 : ~(~0U >> amount)); } // \note Arithmetic shift. in rightShift() argument 59 template<typename T, int Size> Vector<T, Size> leftShift (const Vector<T, Size>& value, const Vector<int, Size>& amount) in leftShift() argument 67 template<typename T, int Size> Vector<T, Size> rightShift (const Vector<T, Size>& value, const Vector<int, Size>& amount) in rightShift() argument 75 leftShiftVecScalar(const Vector<T, Size>& value, int amount) leftShiftVecScalar() argument 76 rightShiftVecScalar(const Vector<T, Size>& value, int amount) rightShiftVecScalar() argument [all...] |
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fShaderOperatorTests.cpp | 81 template<typename T> inline T leftShift (T value, int amount) { return value << amount; } in leftShift() argument 83 inline deUint32 rightShift (deUint32 value, int amount) { return value >> amount; } in rightShift() argument 84 inline int rightShift (int value, int amount) { return (value >> amount) | (value >= 0 ? 0 : ~(~0U >> amount)); } // \note Arithmetic shift. in rightShift() argument 86 template<typename T, int Size> Vector<T, Size> leftShift (const Vector<T, Size>& value, const Vector<int, Size>& amount) in leftShift() argument 94 template<typename T, int Size> Vector<T, Size> rightShift (const Vector<T, Size>& value, const Vector<int, Size>& amount) in rightShift() argument 102 leftShiftVecScalar(const Vector<T, Size>& value, int amount) leftShiftVecScalar() argument 103 rightShiftVecScalar(const Vector<T, Size>& value, int amount) rightShiftVecScalar() argument [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/ |
H A D | vktShaderRenderOperatorTests.cpp | 54 template<typename T> inline T leftShift (T value, int amount) { return value << amount; } in leftShift() argument 56 inline deUint32 rightShift (deUint32 value, int amount) { return value >> amount; } in rightShift() argument 57 inline int rightShift (int value, int amount) { return (value >> amount) | (value >= 0 ? 0 : ~(~0U >> amount)); } // \note Arithmetic shift. in rightShift() argument 59 template<typename T, int Size> Vector<T, Size> leftShift (const Vector<T, Size>& value, const Vector<int, Size>& amount) in leftShift() argument 67 template<typename T, int Size> Vector<T, Size> rightShift (const Vector<T, Size>& value, const Vector<int, Size>& amount) in rightShift() argument 75 leftShiftVecScalar(const Vector<T, Size>& value, int amount) leftShiftVecScalar() argument 76 rightShiftVecScalar(const Vector<T, Size>& value, int amount) rightShiftVecScalar() argument [all...] |
/kernel/linux/linux-5.10/drivers/scsi/ |
H A D | BusLogic.h | 1233 blogic_addcount(struct blogic_byte_count *bytecount, unsigned int amount) blogic_addcount() argument 1247 blogic_incszbucket(unsigned int *cmdsz_buckets, unsigned int amount) blogic_incszbucket() argument [all...] |
/kernel/linux/linux-6.6/drivers/scsi/ |
H A D | BusLogic.h | 1222 blogic_addcount(struct blogic_byte_count *bytecount, unsigned int amount) blogic_addcount() argument 1236 blogic_incszbucket(unsigned int *cmdsz_buckets, unsigned int amount) blogic_incszbucket() argument [all...] |
/third_party/icu/icu4c/source/test/intltest/ |
H A D | numfmtst.cpp | 3115 void NumberFormatTest::expectParseCurrency(const NumberFormat &fmt, const UChar* currency, double amount, const char *text) { in expectParseCurrency() argument 8842 double amount = 12345.67; in Test11035_FormatCurrencyAmount() local
|
/third_party/mesa3d/src/amd/llvm/ |
H A D | ac_llvm_build.c | 3276 static inline enum dpp_ctrl dpp_row_sr(unsigned amount) in dpp_row_sr() argument
|
/third_party/node/deps/v8/src/wasm/baseline/mips/ |
H A D | liftoff-assembler-mips.h | 1089 Emit64BitShiftOperation( LiftoffAssembler* assm, LiftoffRegister dst, LiftoffRegister src, Register amount, void (TurboAssembler::*emit_shift)(Register, Register, Register, Register, Register, Register, Register)) Emit64BitShiftOperation() argument 1129 emit_i64_shl(LiftoffRegister dst, LiftoffRegister src, Register amount) emit_i64_shl() argument 1135 emit_i64_shli(LiftoffRegister dst, LiftoffRegister src, int32_t amount) emit_i64_shli() argument 1153 emit_i64_sar(LiftoffRegister dst, LiftoffRegister src, Register amount) emit_i64_sar() argument 1159 emit_i64_sari(LiftoffRegister dst, LiftoffRegister src, int32_t amount) emit_i64_sari() argument 1172 emit_i64_shr(LiftoffRegister dst, LiftoffRegister src, Register amount) emit_i64_shr() argument 1178 emit_i64_shri(LiftoffRegister dst, LiftoffRegister src, int32_t amount) emit_i64_shri() argument [all...] |
/third_party/node/deps/v8/src/heap/ |
H A D | heap.h | 272 const int64_t amount = in Update() local [all...] |
/third_party/node/deps/v8/src/wasm/baseline/x64/ |
H A D | liftoff-assembler-x64.h | 1223 EmitShiftOperation(LiftoffAssembler* assm, Register dst, Register src, Register amount, void (Assembler::*emit_shift)(Register)) EmitShiftOperation() argument 1255 emit_i32_shl(Register dst, Register src, Register amount) emit_i32_shl() argument 1261 emit_i32_shli(Register dst, Register src, int32_t amount) emit_i32_shli() argument 1267 emit_i32_sar(Register dst, Register src, Register amount) emit_i32_sar() argument 1273 emit_i32_sari(Register dst, Register src, int32_t amount) emit_i32_sari() argument 1279 emit_i32_shr(Register dst, Register src, Register amount) emit_i32_shr() argument 1285 emit_i32_shri(Register dst, Register src, int32_t amount) emit_i32_shri() argument 1420 emit_i64_shl(LiftoffRegister dst, LiftoffRegister src, Register amount) emit_i64_shl() argument 1426 emit_i64_shli(LiftoffRegister dst, LiftoffRegister src, int32_t amount) emit_i64_shli() argument 1432 emit_i64_sar(LiftoffRegister dst, LiftoffRegister src, Register amount) emit_i64_sar() argument 1438 emit_i64_sari(LiftoffRegister dst, LiftoffRegister src, int32_t amount) emit_i64_sari() argument 1444 emit_i64_shr(LiftoffRegister dst, LiftoffRegister src, Register amount) emit_i64_shr() argument 1450 emit_i64_shri(LiftoffRegister dst, LiftoffRegister src, int32_t amount) emit_i64_shri() argument [all...] |
/third_party/node/deps/v8/src/wasm/baseline/riscv64/ |
H A D | liftoff-assembler-riscv64.h | 1319 emit_i64_shli(LiftoffRegister dst, LiftoffRegister src, int amount) emit_i64_shli() argument 1329 emit_i64_sari(LiftoffRegister dst, LiftoffRegister src, int amount) emit_i64_sari() argument 1339 emit_i64_shri(LiftoffRegister dst, LiftoffRegister src, int amount) emit_i64_shri() argument [all...] |
/third_party/vixl/src/aarch32/ |
H A D | assembler-aarch32.cc | 1969 uint32_t amount = operand.GetShiftAmount(); in adc() local 2057 uint32_t amount = operand.GetShiftAmount(); in adcs() local 2256 uint32_t amount = operand.GetShiftAmount(); add() local 2425 uint32_t amount = operand.GetShiftAmount(); adds() local 2743 uint32_t amount = operand.GetShiftAmount(); and_() local 2831 uint32_t amount = operand.GetShiftAmount(); ands() local 3296 uint32_t amount = operand.GetShiftAmount(); bic() local 3384 uint32_t amount = operand.GetShiftAmount(); bics() local 3866 uint32_t amount = operand.GetShiftAmount(); cmn() local 3964 uint32_t amount = operand.GetShiftAmount(); cmp() local 4231 uint32_t amount = operand.GetShiftAmount(); eor() local 4319 uint32_t amount = operand.GetShiftAmount(); eors() local 5137 uint32_t amount = operand.GetShiftAmount(); ldr() local 5440 uint32_t amount = operand.GetShiftAmount(); ldrb() local 6102 uint32_t amount = operand.GetShiftAmount(); ldrh() local 6357 uint32_t amount = operand.GetShiftAmount(); ldrsb() local 6612 uint32_t amount = operand.GetShiftAmount(); ldrsh() local 7076 uint32_t amount = operand.GetShiftAmount(); mov() local 7220 uint32_t amount = operand.GetShiftAmount(); movs() local 7553 uint32_t amount = operand.GetShiftAmount(); mvn() local 7637 uint32_t amount = operand.GetShiftAmount(); mvns() local 7729 uint32_t amount = operand.GetShiftAmount(); orn() local 7771 uint32_t amount = operand.GetShiftAmount(); orns() local 7834 uint32_t amount = operand.GetShiftAmount(); orr() local 7922 uint32_t amount = operand.GetShiftAmount(); orrs() local 7973 uint32_t amount = operand.GetShiftAmount(); pkhbt() local 8007 uint32_t amount = operand.GetShiftAmount(); pkhtb() local 8181 uint32_t amount = operand.GetShiftAmount(); pld() local 8258 uint32_t amount = operand.GetShiftAmount(); pldw() local 8361 uint32_t amount = operand.GetShiftAmount(); pli() local 9163 uint32_t amount = operand.GetShiftAmount(); rsb() local 9247 uint32_t amount = operand.GetShiftAmount(); rsbs() local 9311 uint32_t amount = operand.GetShiftAmount(); rsc() local 9364 uint32_t amount = operand.GetShiftAmount(); rscs() local 9510 uint32_t amount = operand.GetShiftAmount(); sbc() local 9598 uint32_t amount = operand.GetShiftAmount(); sbcs() local 10802 uint32_t amount = operand.GetShiftAmount(); ssat() local 11495 uint32_t amount = operand.GetShiftAmount(); str() local 11656 uint32_t amount = operand.GetShiftAmount(); strb() local 12100 uint32_t amount = operand.GetShiftAmount(); strh() local 12238 uint32_t amount = operand.GetShiftAmount(); sub() local 12399 uint32_t amount = operand.GetShiftAmount(); subs() local 12534 uint32_t amount = operand.GetShiftAmount(); sxtab() local 12571 uint32_t amount = operand.GetShiftAmount(); sxtab16() local 12608 uint32_t amount = operand.GetShiftAmount(); sxtah() local 12655 uint32_t amount = operand.GetShiftAmount(); sxtb() local 12688 uint32_t amount = operand.GetShiftAmount(); sxtb16() local 12734 uint32_t amount = operand.GetShiftAmount(); sxth() local 12820 uint32_t amount = operand.GetShiftAmount(); teq() local 12904 uint32_t amount = operand.GetShiftAmount(); tst() local 13548 uint32_t amount = operand.GetShiftAmount(); usat() local 13693 uint32_t amount = operand.GetShiftAmount(); uxtab() local 13730 uint32_t amount = operand.GetShiftAmount(); uxtab16() local 13767 uint32_t amount = operand.GetShiftAmount(); uxtah() local 13814 uint32_t amount = operand.GetShiftAmount(); uxtb() local 13847 uint32_t amount = operand.GetShiftAmount(); uxtb16() local 13893 uint32_t amount = operand.GetShiftAmount(); uxth() local [all...] |
H A D | disasm-aarch32.cc | 7096 uint32_t amount = (instr >> 22) & 0x1f; in DecodeT32() local 7099 asr(CurrentCond(), Narrow, Register(rd), Register(rm), amount); in DecodeT32() local 7106 uint32_t amount = (instr >> 22) & 0x1f; in DecodeT32() local 7109 asrs(Condition::None(), Narrow, Register(rd), Register(rm), amount); in DecodeT32() local 7116 uint32_t amount = (instr >> 22) & 0x1f; in DecodeT32() local 7118 lsl(CurrentCond(), Narrow, Register(rd), Register(rm), amount); in DecodeT32() local 7125 uint32_t amount = (instr >> 22) & 0x1f; DecodeT32() local 7127 lsls(Condition::None(), Narrow, Register(rd), Register(rm), amount); DecodeT32() local 7134 uint32_t amount = (instr >> 22) & 0x1f; DecodeT32() local 7137 lsr(CurrentCond(), Narrow, Register(rd), Register(rm), amount); DecodeT32() local 7144 uint32_t amount = (instr >> 22) & 0x1f; DecodeT32() local 7147 lsrs(Condition::None(), Narrow, Register(rd), Register(rm), amount); DecodeT32() local 9276 uint32_t amount = DecodeT32() local 9282 Operand(Register(rn), LSL, amount)); DecodeT32() local 9314 uint32_t amount = DecodeT32() local 9320 Operand(Register(rn), ASR, amount)); DecodeT32() local 9395 uint32_t amount = DecodeT32() local 9401 Operand(Register(rn), LSL, amount)); DecodeT32() local 9433 uint32_t amount = DecodeT32() local 9439 Operand(Register(rn), ASR, amount)); DecodeT32() local 10771 uint32_t amount = (instr >> 4) & 0x3; DecodeT32() local 10795 amount, DecodeT32() local 10889 uint32_t amount = (instr >> 4) & 0x3; DecodeT32() local 10913 amount, DecodeT32() local 11028 uint32_t amount = (instr >> 4) & 0x3; DecodeT32() local 11052 amount, DecodeT32() local 16935 uint32_t amount = (instr >> 4) & 0x3; DecodeT32() local 16943 amount, DecodeT32() local 16958 uint32_t amount = (instr >> 4) & 0x3; DecodeT32() local 16982 amount, DecodeT32() local 17119 uint32_t amount = (instr >> 4) & 0x3; DecodeT32() local 17127 amount, DecodeT32() local 17142 uint32_t amount = (instr >> 4) & 0x3; DecodeT32() local 17166 amount, DecodeT32() local 17464 uint32_t amount = (instr >> 4) & 0x3; DecodeT32() local 17488 amount, DecodeT32() local 17723 uint32_t amount = DecodeT32() local 17732 amount, DecodeT32() local 17749 uint32_t amount = DecodeT32() local 17778 amount, DecodeT32() local 17992 uint32_t amount = (instr >> 4) & 0x3; DecodeT32() local 18016 amount, DecodeT32() local 18311 uint32_t amount = ((instr >> 6) & 0x3) | DecodeT32() local 18323 amount); DecodeT32() local 18333 amount); DecodeT32() local 18345 uint32_t amount = ((instr >> 6) & 0x3) | DecodeT32() local 18356 amount); DecodeT32() local 18366 amount); DecodeT32() local 18377 uint32_t amount = ((instr >> 6) & 0x3) | DecodeT32() local 18389 amount); DecodeT32() local 18399 amount); DecodeT32() local 18411 uint32_t amount = ((instr >> 6) & 0x3) | DecodeT32() local 18418 amount); DecodeT32() local 18898 uint32_t amount = ((instr >> 6) & 0x3) | DecodeT32() local 18910 amount); DecodeT32() local 18920 amount); DecodeT32() local 18932 uint32_t amount = ((instr >> 6) & 0x3) | DecodeT32() local 18943 amount); DecodeT32() local 18953 amount); DecodeT32() local 18964 uint32_t amount = ((instr >> 6) & 0x3) | DecodeT32() local 18976 amount); DecodeT32() local 18986 amount); DecodeT32() local 18998 uint32_t amount = ((instr >> 6) & 0x3) | DecodeT32() local 19005 amount); DecodeT32() local 19320 uint32_t amount = DecodeT32() local 19326 Operand(Register(rm), LSL, amount)); DecodeT32() local 19337 uint32_t amount = DecodeT32() local 19344 Operand(Register(rm), ASR, amount)); DecodeT32() local 20698 uint32_t amount = ((instr >> 4) & 0x3) * 8; DecodeT32() local 20715 Operand(Register(rm), ROR, amount)); DecodeT32() local 20730 uint32_t amount = ((instr >> 4) & 0x3) * 8; DecodeT32() local 20735 Operand(Register(rm), ROR, amount)); DecodeT32() local 20751 uint32_t amount = ((instr >> 4) & 0x3) * 8; DecodeT32() local 20755 Operand(Register(rm), ROR, amount)); DecodeT32() local 20769 uint32_t amount = ((instr >> 4) & 0x3) * 8; DecodeT32() local 20774 Operand(Register(rm), ROR, amount)); DecodeT32() local 20790 uint32_t amount = ((instr >> 4) & 0x3) * 8; DecodeT32() local 20807 Operand(Register(rm), ROR, amount)); DecodeT32() local 20822 uint32_t amount = ((instr >> 4) & 0x3) * 8; DecodeT32() local 20827 Operand(Register(rm), ROR, amount)); DecodeT32() local 20992 uint32_t amount = ((instr >> 4) & 0x3) * 8; DecodeT32() local 21009 Operand(Register(rm), ROR, amount)); DecodeT32() local 21024 uint32_t amount = ((instr >> 4) & 0x3) * 8; DecodeT32() local 21029 Operand(Register(rm), ROR, amount)); DecodeT32() local 21045 uint32_t amount = ((instr >> 4) & 0x3) * 8; DecodeT32() local 21049 Operand(Register(rm), ROR, amount)); DecodeT32() local 21063 uint32_t amount = ((instr >> 4) & 0x3) * 8; DecodeT32() local 21068 Operand(Register(rm), ROR, amount)); DecodeT32() local 21084 uint32_t amount = ((instr >> 4) & 0x3) * 8; DecodeT32() local 21101 Operand(Register(rm), ROR, amount)); DecodeT32() local 21116 uint32_t amount = ((instr >> 4) & 0x3) * 8; DecodeT32() local 21121 Operand(Register(rm), ROR, amount)); DecodeT32() local 55005 uint32_t amount = 0; DecodeA32() local 55031 uint32_t amount = shift_operand.GetAmount(); DecodeA32() local 55058 uint32_t amount = 0; DecodeA32() local 55084 uint32_t amount = shift_operand.GetAmount(); DecodeA32() local 55111 uint32_t amount = 0; DecodeA32() local 55137 uint32_t amount = shift_operand.GetAmount(); DecodeA32() local 56803 uint32_t amount = (instr >> 7) & 0x1f; DecodeA32() local 56823 uint32_t amount = (instr >> 7) & 0x1f; DecodeA32() local 56841 uint32_t amount = (instr >> 7) & 0x1f; DecodeA32() local 56861 uint32_t amount = (instr >> 7) & 0x1f; DecodeA32() local 59151 uint32_t amount = (instr >> 7) & 0x1f; DecodeA32() local 59166 uint32_t amount = (instr >> 7) & 0x1f; DecodeA32() local 59179 uint32_t amount = (instr >> 7) & 0x1f; DecodeA32() local 59194 uint32_t amount = (instr >> 7) & 0x1f; DecodeA32() local 62227 uint32_t amount = shift_operand.GetAmount(); DecodeA32() local 62256 uint32_t amount = shift_operand.GetAmount(); DecodeA32() local 62407 uint32_t amount = (instr >> 7) & 0x1f; DecodeA32() local 62446 uint32_t amount = (instr >> 7) & 0x1f; DecodeA32() local 62470 uint32_t amount = ((instr >> 10) & 0x3) * 8; DecodeA32() local 62490 uint32_t amount = ((instr >> 10) & 0x3) * 8; DecodeA32() local 62793 uint32_t amount = (instr >> 7) & 0x1f; DecodeA32() local 62869 uint32_t amount = (instr >> 7) & 0x1f; DecodeA32() local 62893 uint32_t amount = ((instr >> 10) & 0x3) * 8; DecodeA32() local 62914 uint32_t amount = ((instr >> 10) & 0x3) * 8; DecodeA32() local 62940 uint32_t amount = ((instr >> 10) & 0x3) * 8; DecodeA32() local 62961 uint32_t amount = ((instr >> 10) & 0x3) * 8; DecodeA32() local 63003 uint32_t amount = shift_operand.GetAmount(); DecodeA32() local 63032 uint32_t amount = shift_operand.GetAmount(); DecodeA32() local 63165 uint32_t amount = ((instr >> 10) & 0x3) * 8; DecodeA32() local 63185 uint32_t amount = ((instr >> 10) & 0x3) * 8; DecodeA32() local 63488 uint32_t amount = (instr >> 7) & 0x1f; DecodeA32() local 63564 uint32_t amount = (instr >> 7) & 0x1f; DecodeA32() local 63588 uint32_t amount = ((instr >> 10) & 0x3) * 8; DecodeA32() local 63609 uint32_t amount = ((instr >> 10) & 0x3) * 8; DecodeA32() local 63635 uint32_t amount = ((instr >> 10) & 0x3) * 8; DecodeA32() local 63656 uint32_t amount = ((instr >> 10) & 0x3) * 8; DecodeA32() local 63698 uint32_t amount = shift_operand.GetAmount(); DecodeA32() local 63728 uint32_t amount = shift_operand.GetAmount(); DecodeA32() local 63985 uint32_t amount = shift_operand.GetAmount(); DecodeA32() local 64015 uint32_t amount = shift_operand.GetAmount(); DecodeA32() local 64097 uint32_t amount = shift_operand.GetAmount(); DecodeA32() local 64127 uint32_t amount = shift_operand.GetAmount(); DecodeA32() local 64443 uint32_t amount = shift_operand.GetAmount(); DecodeA32() local 64473 uint32_t amount = shift_operand.GetAmount(); DecodeA32() local [all...] |
/kernel/linux/linux-5.10/kernel/sched/ |
H A D | fair.c | 4917 u64 min_amount, amount = 0; in __assign_cfs_rq_runtime() local [all...] |