/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/ |
H A D | openid.php | 54 , $ax = false, $sreg = false, $data; 212 # We ignore it for MyOpenID, as it breaks sreg if using OpenID 2.0 225 $this->sreg = strpos($content, '<Type>http://openid.net/sreg/1.0</Type>') variable 226 || strpos($content, '<Type>http://openid.net/extensions/sreg/1.1</Type>'); 247 $this->sreg = strpos($content, '<Type>http://openid.net/sreg/1.0</Type>') variable 248 || strpos($content, '<Type>http://openid.net/extensions/sreg/1.1</Type>'); 311 $params['openid.ns.sreg'] = 'http://openid.net/extensions/sreg/1. [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/ |
H A D | openid.php | 54 , $ax = false, $sreg = false, $data; 212 # We ignore it for MyOpenID, as it breaks sreg if using OpenID 2.0 225 $this->sreg = strpos($content, '<Type>http://openid.net/sreg/1.0</Type>') variable 226 || strpos($content, '<Type>http://openid.net/extensions/sreg/1.1</Type>'); 247 $this->sreg = strpos($content, '<Type>http://openid.net/sreg/1.0</Type>') variable 248 || strpos($content, '<Type>http://openid.net/extensions/sreg/1.1</Type>'); 311 $params['openid.ns.sreg'] = 'http://openid.net/extensions/sreg/1. [all...] |
/external/chromium_org/v8/src/arm/ |
H A D | simulator-arm.h | 190 void set_s_register_from_float(int sreg, const float flt) { argument 191 SetVFPRegister<float, 1>(sreg, flt); 194 float get_float_from_s_register(int sreg) { argument 195 return GetFromVFPRegister<float, 1>(sreg); 198 void set_s_register_from_sinteger(int sreg, const int sint) { argument 199 SetVFPRegister<int, 1>(sreg, sint); 202 int get_sinteger_from_s_register(int sreg) { argument 203 return GetFromVFPRegister<int, 1>(sreg);
|
H A D | simulator-arm.cc | 995 void Simulator::set_s_register(int sreg, unsigned int value) { argument 996 ASSERT((sreg >= 0) && (sreg < num_s_registers)); 997 vfp_registers_[sreg] = value; 1001 unsigned int Simulator::get_s_register(int sreg) const { 1002 ASSERT((sreg >= 0) && (sreg < num_s_registers)); 1003 return vfp_registers_[sreg];
|
/external/clang/lib/StaticAnalyzer/Core/ |
H A D | MemRegion.cpp | 337 const MemRegion *sreg) { 340 ID.AddPointer(sreg); 336 ProfileRegion(llvm::FoldingSetNodeID& ID, SymbolRef sym, const MemRegion *sreg) argument
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | MemRegion.h | 537 CodeTextRegion(const MemRegion *sreg, Kind k) : TypedRegion(sreg, k) {} argument 551 FunctionTextRegion(const NamedDecl *fd, const MemRegion* sreg) argument 552 : CodeTextRegion(sreg, FunctionTextRegionKind), FD(fd) { 601 AnalysisDeclContext *ac, const MemRegion* sreg) 602 : CodeTextRegion(sreg, BlockTextRegionKind), BD(bd), AC(ac), locTy(lTy) {} 642 const MemRegion *sreg) 643 : TypedRegion(sreg, BlockDataRegionKind), BC(bc), LC(lc), 716 SymbolicRegion(const SymbolRef s, const MemRegion* sreg) argument 717 : SubRegion(sreg, SymbolicRegionKin 600 BlockTextRegion(const BlockDecl *bd, CanQualType lTy, AnalysisDeclContext *ac, const MemRegion* sreg) argument 641 BlockDataRegion(const BlockTextRegion *bc, const LocationContext *lc, const MemRegion *sreg) argument 746 StringRegion(const StringLiteral* str, const MemRegion* sreg) argument 782 ObjCStringRegion(const ObjCStringLiteral* str, const MemRegion* sreg) argument [all...] |
/external/qemu/target-arm/ |
H A D | translate.c | 1105 int sreg; local 1106 sreg = reg * 2 + n; 1107 return vfp_reg_offset(0, sreg);
|
/external/v8/src/arm/ |
H A D | simulator-arm.cc | 936 void Simulator::set_s_register(int sreg, unsigned int value) { argument 937 ASSERT((sreg >= 0) && (sreg < num_s_registers)); 938 vfp_register[sreg] = value; 942 unsigned int Simulator::get_s_register(int sreg) const { 943 ASSERT((sreg >= 0) && (sreg < num_s_registers)); 944 return vfp_register[sreg]; 948 void Simulator::set_s_register_from_float(int sreg, const float flt) { argument 949 ASSERT((sreg > 958 set_s_register_from_sinteger(int sreg, const int sint) argument 979 get_float_from_s_register(int sreg) argument 992 get_sinteger_from_s_register(int sreg) argument [all...] |
/external/valgrind/main/VEX/priv/ |
H A D | guest_x86_toIR.c | 487 static Int segmentGuestRegOffset ( UInt sreg ) 489 switch (sreg) { 564 static IRExpr* getSReg ( UInt sreg ) 566 return IRExpr_Get( segmentGuestRegOffset(sreg), Ity_I16 ); 569 static void putSReg ( UInt sreg, IRExpr* e ) argument 572 stmt( IRStmt_Put( segmentGuestRegOffset(sreg), e ) ); 1288 static HChar* nameSReg ( UInt sreg ) 1290 switch (sreg) { 1421 Int sreg; local 1430 case 0x3E: sreg 6816 dis_push_segreg( UInt sreg, Int sz ) argument 6831 dis_pop_segreg( UInt sreg, Int sz ) argument [all...] |