HomeSort by relevance Sort by last modified time
    Searched refs:Acc (Results 1 - 21 of 21) sorted by null

  /device/linaro/bootloader/edk2/UefiCpuPkg/PiSmmCpuDxeSmm/X64/
PageTbl.c 184 @param[in] Acc Access record value
190 IN UINT64 Acc
196 *Entry = BitFieldWrite64 (*Entry, 9, 11, Acc);
231 UINT64 Acc;
233 Acc = GetAccNum (Entry);
243 if (Acc != 0) {
247 SetAccNum (Entry, Acc - 1);
250 return Acc;
277 UINT64 Acc;
290 Acc = 0;
    [all...]
  /prebuilts/go/darwin-x86/src/math/big/
floatexample_test.go 20 fmt.Printf("x = %.10g (%s, prec = %d, acc = %s)\n", &x, x.Text('p', 0), x.Prec(), x.Acc())
21 fmt.Printf("y = %.10g (%s, prec = %d, acc = %s)\n", &y, y.Text('p', 0), y.Prec(), y.Acc())
22 fmt.Printf("z = %.10g (%s, prec = %d, acc = %s)\n", &z, z.Text('p', 0), z.Prec(), z.Acc())
24 // x = 1000 (0x.fap+10, prec = 64, acc = Exact)
25 // y = 2.718281828 (0x.adf85458248cd8p+2, prec = 53, acc = Exact)
26 // z = 1002.718282 (0x.faadf854p+10, prec = 32, acc = Below)
floatmarsh_test.go 76 if rx.Acc() != tx.Acc() {
77 t.Errorf("transmission of %s's accuracy failed: got %s want %s", x, rx.Acc(), tx.Acc())
float_test.go 20 u, acc := x.Uint64()
21 if acc != Exact {
28 i, acc := x.Int64()
29 if acc != Exact {
108 acc Accuracy
138 if got, acc := x.String(), x.Acc(); got != test.want || acc != test.acc {
139 t.Errorf("%s.SetPrec(%d) = %s (%s); want %s (%s)", test.x, test.prec, got, acc, test.want, test.acc
    [all...]
float.go 61 acc Accuracy
158 z.acc = Exact // optimistically assume no rounding is needed
165 z.acc = makeAcc(z.neg)
195 z.acc = Exact
220 // Acc returns the accuracy of x produced by the most recent operation.
221 func (x *Float) Acc() Accuracy {
222 return x.acc
278 z.acc = makeAcc(z.neg)
285 z.acc = makeAcc(!z.neg)
373 // round rounds z according to z.mode to z.prec bits and sets z.acc accordingly
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
floatexample_test.go 20 fmt.Printf("x = %.10g (%s, prec = %d, acc = %s)\n", &x, x.Text('p', 0), x.Prec(), x.Acc())
21 fmt.Printf("y = %.10g (%s, prec = %d, acc = %s)\n", &y, y.Text('p', 0), y.Prec(), y.Acc())
22 fmt.Printf("z = %.10g (%s, prec = %d, acc = %s)\n", &z, z.Text('p', 0), z.Prec(), z.Acc())
24 // x = 1000 (0x.fap+10, prec = 64, acc = Exact)
25 // y = 2.718281828 (0x.adf85458248cd8p+2, prec = 53, acc = Exact)
26 // z = 1002.718282 (0x.faadf854p+10, prec = 32, acc = Below)
floatmarsh_test.go 76 if rx.Acc() != tx.Acc() {
77 t.Errorf("transmission of %s's accuracy failed: got %s want %s", x, rx.Acc(), tx.Acc())
float_test.go 20 u, acc := x.Uint64()
21 if acc != Exact {
28 i, acc := x.Int64()
29 if acc != Exact {
108 acc Accuracy
138 if got, acc := x.String(), x.Acc(); got != test.want || acc != test.acc {
139 t.Errorf("%s.SetPrec(%d) = %s (%s); want %s (%s)", test.x, test.prec, got, acc, test.want, test.acc
    [all...]
float.go 61 acc Accuracy
158 z.acc = Exact // optimistically assume no rounding is needed
165 z.acc = makeAcc(z.neg)
195 z.acc = Exact
220 // Acc returns the accuracy of x produced by the most recent operation.
221 func (x *Float) Acc() Accuracy {
222 return x.acc
278 z.acc = makeAcc(z.neg)
285 z.acc = makeAcc(!z.neg)
373 // round rounds z according to z.mode to z.prec bits and sets z.acc accordingly
    [all...]
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVType.h 403 Acc.push_back(TheAcc);
414 bool hasAccessQualifier() const { return !Acc.empty();}
417 return Acc[0];
422 if (Acc.size() > 0 && Acc[0] == AccessQualifierReadWrite)
438 Desc.Arrayed, Desc.MS, Desc.Sampled, Desc.Format, Acc)
442 assert(WordCount == FixedWC + Acc.size());
450 assert(Acc.size() <= 1);
454 Acc.resize(WordCount - FixedWC);
459 std::vector<SPIRVAccessQualifierKind> Acc;
    [all...]
SPIRVModule.cpp 759 const SPIRVTypeImageDescriptor &Desc, SPIRVAccessQualifierKind Acc) {
761 SampledType ? SampledType->getId() : 0, Desc, Acc));
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonStoreWidening.cpp 406 unsigned Acc = 0; // Value accumulator.
418 Acc |= Val;
431 if (Acc < 0x10000) {
432 // Create mem[hw] = #Acc
437 int Val = (TotalSize == 2) ? int16_t(Acc) : int(Acc);
448 // Create vreg = A2_tfrsi #Acc; mem[hw] = vreg
453 .addImm(int(Acc));
  /external/gemmlowp/internal/
simd_wrappers.h 40 inline void MulAdd(std::int32_t lhs, std::int32_t rhs, std::int32_t* acc) {
41 *acc += lhs * rhs;
242 template <typename Lhs, typename Rhs, typename Acc>
244 static void Run(const Lhs& lhs, const Rhs& rhs, Acc* acc) {
245 static constexpr int Rows = Acc::kRows;
246 static constexpr int Cols = Acc::kCols;
251 static_assert(Acc::kRegisterLanes == 1,
270 &acc->buf.reg[r + c * Rows]);
276 template <typename Lhs, typename Rhs, typename Acc>
    [all...]
  /external/spirv-llvm/lib/SPIRV/
SPIRVUtil.cpp     [all...]
SPIRVInternal.h 831 SPIRVAccessQualifierKind Acc);
849 mapOCLTypeNameToSPIRV(StringRef Name, StringRef Acc = "");
    [all...]
SPIRVWriter.cpp 486 std::string Acc = kAccessQualName::ReadOnly;
488 Acc = SubStrs[2];
491 PipeT->setPipeAcessQualifier(SPIRSPIRVAccessQualifierMap::map(Acc));
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
i386-opc.h 676 Acc,
773 unsigned int acc:1; member in struct:i386_operand_type::__anon116489
i386-gen.c 307 "Acc" },
323 "Reg32|Acc|Dword" },
325 "Reg64|Acc|Qword" },
554 BITFIELD (Acc),
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceTargetLoweringARM32.h 423 void _mla(Variable *Dest, Variable *Src0, Variable *Src1, Variable *Acc,
425 Context.insert<InstARM32Mla>(Dest, Src0, Src1, Acc, Pred);
427 void _mls(Variable *Dest, Variable *Src0, Variable *Src1, Variable *Acc,
429 Context.insert<InstARM32Mls>(Dest, Src0, Src1, Acc, Pred);
    [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 113 TypeSpec Acc;
116 Acc.push_back(I);
117 Ret.push_back(TypeSpec(Acc));
118 Acc.clear();
120 Acc.push_back(I);
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp     [all...]

Completed in 487 milliseconds