Searched defs:sreg (Results 1 - 7 of 7) sorted by relevance

/external/v8/test/cctest/
H A Dtest-utils-arm64.h80 inline float sreg(unsigned code) const { function in class:RegisterDump
/external/vixl/test/
H A Dtest-utils-a64.h101 inline float sreg(unsigned code) const { function in class:vixl::RegisterDump
/external/v8/src/arm/
H A Dsimulator-arm.h170 void set_s_register_from_float(int sreg, const float flt) { argument
171 SetVFPRegister<float, 1>(sreg, flt);
174 float get_float_from_s_register(int sreg) { argument
175 return GetFromVFPRegister<float, 1>(sreg);
178 void set_s_register_from_sinteger(int sreg, const int sint) { argument
179 SetVFPRegister<int, 1>(sreg, sint);
182 int get_sinteger_from_s_register(int sreg) { argument
183 return GetFromVFPRegister<int, 1>(sreg);
H A Dsimulator-arm.cc1000 void Simulator::set_s_register(int sreg, unsigned int value) { argument
1001 DCHECK((sreg >= 0) && (sreg < num_s_registers));
1002 vfp_registers_[sreg] = value;
1006 unsigned int Simulator::get_s_register(int sreg) const {
1007 DCHECK((sreg >= 0) && (sreg < num_s_registers));
1008 return vfp_registers_[sreg];
2349 SRegister sreg = static_cast<SRegister>(instr->BitField(22, 22)); local
2350 set_register(rd, GetFromSpecialRegister(sreg));
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h534 CodeTextRegion(const MemRegion *sreg, Kind k) : TypedRegion(sreg, k) {} argument
548 FunctionTextRegion(const NamedDecl *fd, const MemRegion* sreg) argument
549 : CodeTextRegion(sreg, FunctionTextRegionKind), FD(fd) {
598 AnalysisDeclContext *ac, const MemRegion* sreg)
599 : CodeTextRegion(sreg, BlockTextRegionKind), BD(bd), AC(ac), locTy(lTy) {}
640 unsigned count, const MemRegion *sreg)
641 : TypedRegion(sreg, BlockDataRegionKind), BC(bc), LC(lc),
716 SymbolicRegion(const SymbolRef s, const MemRegion* sreg) argument
717 : SubRegion(sreg, SymbolicRegionKin
597 BlockTextRegion(const BlockDecl *bd, CanQualType lTy, AnalysisDeclContext *ac, const MemRegion* sreg) argument
639 BlockDataRegion(const BlockTextRegion *bc, const LocationContext *lc, unsigned count, const MemRegion *sreg) argument
746 StringRegion(const StringLiteral* str, const MemRegion* sreg) argument
782 ObjCStringRegion(const ObjCStringLiteral* str, const MemRegion* sreg) argument
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp337 const MemRegion *sreg) {
340 ID.AddPointer(sreg);
336 ProfileRegion(llvm::FoldingSetNodeID& ID, SymbolRef sym, const MemRegion *sreg) argument
/external/valgrind/VEX/priv/
H A Dguest_x86_toIR.c484 static Int segmentGuestRegOffset ( UInt sreg )
486 switch (sreg) {
561 static IRExpr* getSReg ( UInt sreg )
563 return IRExpr_Get( segmentGuestRegOffset(sreg), Ity_I16 );
566 static void putSReg ( UInt sreg, IRExpr* e ) argument
569 stmt( IRStmt_Put( segmentGuestRegOffset(sreg), e ) );
1290 static const HChar* nameSReg ( UInt sreg )
1292 switch (sreg) {
1423 Int sreg; local
1432 case 0x3E: sreg
6922 dis_push_segreg( UInt sreg, Int sz ) argument
6937 dis_pop_segreg( UInt sreg, Int sz ) argument
[all...]

Completed in 208 milliseconds