Home
last modified time | relevance | path

Searched refs:Exp (Results 1 – 25 of 260) sorted by relevance

1234567891011

/external/libcxx/test/std/containers/sequences/array/array.tuple/
Dtuple_element.pass.cpp21 typedef T Exp; in test() typedef
23 static_assert((std::is_same<typename std::tuple_element<0, C>::type, Exp>::value), ""); in test()
24 static_assert((std::is_same<typename std::tuple_element<1, C>::type, Exp>::value), ""); in test()
25 static_assert((std::is_same<typename std::tuple_element<2, C>::type, Exp>::value), ""); in test()
28 typedef T const Exp; in test() typedef
30 static_assert((std::is_same<typename std::tuple_element<0, C>::type, Exp>::value), ""); in test()
31 static_assert((std::is_same<typename std::tuple_element<1, C>::type, Exp>::value), ""); in test()
32 static_assert((std::is_same<typename std::tuple_element<2, C>::type, Exp>::value), ""); in test()
35 typedef T volatile Exp; in test() typedef
37 static_assert((std::is_same<typename std::tuple_element<0, C>::type, Exp>::value), ""); in test()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/MCTargetDesc/
DARMAddressingModes.h636 uint8_t Exp = (Imm >> 4) & 0x7; in getFPImmFloat() local
646 FPUnion.I |= ((Exp & 0x4) != 0 ? 0 : 1) << 30; in getFPImmFloat()
647 FPUnion.I |= ((Exp & 0x4) != 0 ? 0x1f : 0) << 25; in getFPImmFloat()
648 FPUnion.I |= (Exp & 0x3) << 23; in getFPImmFloat()
658 int32_t Exp = (Imm.lshr(10).getSExtValue() & 0x1f) - 15; // -14 to 15 in getFP16Imm() local
668 if (Exp < -3 || Exp > 4) in getFP16Imm()
670 Exp = ((Exp+3) & 0x7) ^ 4; in getFP16Imm()
672 return ((int)Sign << 7) | (Exp << 4) | Mantissa; in getFP16Imm()
684 int32_t Exp = (Imm.lshr(23).getSExtValue() & 0xff) - 127; // -126 to 127 in getFP32Imm() local
696 if (Exp < -3 || Exp > 4) in getFP32Imm()
[all …]
/external/llvm/lib/Target/ARM/MCTargetDesc/
DARMAddressingModes.h659 uint8_t Exp = (Imm >> 4) & 0x7; in getFPImmFloat() local
669 FPUnion.I |= ((Exp & 0x4) != 0 ? 0 : 1) << 30; in getFPImmFloat()
670 FPUnion.I |= ((Exp & 0x4) != 0 ? 0x1f : 0) << 25; in getFPImmFloat()
671 FPUnion.I |= (Exp & 0x3) << 23; in getFPImmFloat()
681 int32_t Exp = (Imm.lshr(10).getSExtValue() & 0x1f) - 15; // -14 to 15 in getFP16Imm() local
691 if (Exp < -3 || Exp > 4) in getFP16Imm()
693 Exp = ((Exp+3) & 0x7) ^ 4; in getFP16Imm()
695 return ((int)Sign << 7) | (Exp << 4) | Mantissa; in getFP16Imm()
707 int32_t Exp = (Imm.lshr(23).getSExtValue() & 0xff) - 127; // -126 to 127 in getFP32Imm() local
719 if (Exp < -3 || Exp > 4) in getFP32Imm()
[all …]
/external/clang/lib/Analysis/
DThreadSafety.cpp357 const Expr *Exp; // The expression for this variable, OR member
361 bool isReference() { return !Exp; } in isReference()
366 : Dec(D), Exp(E), Ref(0), Ctx(C) in VarDefinition()
371 : Dec(D), Exp(nullptr), Ref(R), Ctx(C) in VarDefinition()
406 if (VarDefinitions[i].Exp) { in lookupExpr()
408 return VarDefinitions[i].Exp; in lookupExpr()
446 const Expr *Exp = VarDefinitions[i].Exp; in dump() local
451 if (Exp) Exp->dump(); in dump()
486 Context addDefinition(const NamedDecl *D, const Expr *Exp, Context Ctx) { in addDefinition() argument
490 VarDefinitions.push_back(VarDefinition(D, Exp, Ctx)); in addDefinition()
[all …]
/external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/
DARMAddressingModes.h590 uint8_t Exp = (Imm >> 4) & 0x7; in getFPImmFloat() local
600 FPUnion.I |= ((Exp & 0x4) != 0 ? 0 : 1) << 30; in getFPImmFloat()
601 FPUnion.I |= ((Exp & 0x4) != 0 ? 0x1f : 0) << 25; in getFPImmFloat()
602 FPUnion.I |= (Exp & 0x3) << 23; in getFPImmFloat()
612 int32_t Exp = (Imm.lshr(23).getSExtValue() & 0xff) - 127; // -126 to 127 in getFP32Imm() local
624 if (Exp < -3 || Exp > 4) in getFP32Imm()
626 Exp = ((Exp+3) & 0x7) ^ 4; in getFP32Imm()
628 return ((int)Sign << 7) | (Exp << 4) | Mantissa; in getFP32Imm()
640 int64_t Exp = (Imm.lshr(52).getSExtValue() & 0x7ff) - 1023; // -1022 to 1023 in getFP64Imm() local
652 if (Exp < -3 || Exp > 4) in getFP64Imm()
[all …]
/external/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64AddressingModes.h350 uint8_t Exp = (Imm >> 4) & 0x7; in getFPImmFloat() local
360 FPUnion.I |= ((Exp & 0x4) != 0 ? 0 : 1) << 30; in getFPImmFloat()
361 FPUnion.I |= ((Exp & 0x4) != 0 ? 0x1f : 0) << 25; in getFPImmFloat()
362 FPUnion.I |= (Exp & 0x3) << 23; in getFPImmFloat()
372 int32_t Exp = (Imm.lshr(10).getSExtValue() & 0x1f) - 15; // -14 to 15 in getFP16Imm() local
382 if (Exp < -3 || Exp > 4) in getFP16Imm()
384 Exp = ((Exp+3) & 0x7) ^ 4; in getFP16Imm()
386 return ((int)Sign << 7) | (Exp << 4) | Mantissa; in getFP16Imm()
398 int32_t Exp = (Imm.lshr(23).getSExtValue() & 0xff) - 127; // -126 to 127 in getFP32Imm() local
410 if (Exp < -3 || Exp > 4) in getFP32Imm()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64AddressingModes.h351 uint8_t Exp = (Imm >> 4) & 0x7; in getFPImmFloat() local
361 FPUnion.I |= ((Exp & 0x4) != 0 ? 0 : 1) << 30; in getFPImmFloat()
362 FPUnion.I |= ((Exp & 0x4) != 0 ? 0x1f : 0) << 25; in getFPImmFloat()
363 FPUnion.I |= (Exp & 0x3) << 23; in getFPImmFloat()
373 int32_t Exp = (Imm.lshr(10).getSExtValue() & 0x1f) - 15; // -14 to 15 in getFP16Imm() local
383 if (Exp < -3 || Exp > 4) in getFP16Imm()
385 Exp = ((Exp+3) & 0x7) ^ 4; in getFP16Imm()
387 return ((int)Sign << 7) | (Exp << 4) | Mantissa; in getFP16Imm()
399 int32_t Exp = (Imm.lshr(23).getSExtValue() & 0xff) - 127; // -126 to 127 in getFP32Imm() local
411 if (Exp < -3 || Exp > 4) in getFP32Imm()
[all …]
/external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/bijectors/
Dchain_test.py25 from tensorflow.contrib.distributions.python.ops.bijectors.exp import Exp
50 chain = Chain((Exp(), Softplus()))
78 chain = Chain((Exp(), Softplus()))
100 chain = Chain([Exp(), Exp(), Exp()])
108 chain = Chain([Exp(), Affine()])
112 chain = Chain([Affine(), Exp()])
116 chain = Chain([Affine(), Exp(), Softplus(), Affine()])
164 chain = Chain([Exp(), Affine(scale_diag=scale_diag)])
179 chain = Chain([Affine(scale_diag=scale_diag), Exp()])
193 chain = Chain((Exp(), Exp()))
Dexp_test.py23 from tensorflow.contrib.distributions.python.ops.bijectors.exp import Exp
34 bijector = Exp()
52 bijector = Exp()
58 bijector = Exp()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Testing/Support/
DSupportHelpers.h26 ExpectedHolder(ErrorHolder Err, Expected<T> &Exp) in ExpectedHolder()
27 : ErrorHolder(std::move(Err)), Exp(Exp) {} in ExpectedHolder()
29 Expected<T> &Exp; member
49 *Out << "succeeded with value " << ::testing::PrintToString(*Item.Exp); in PrintTo()
DError.h24 template <typename T> ExpectedHolder<T> TakeExpected(Expected<T> &Exp) { in TakeExpected() argument
25 return {TakeError(Exp.takeError()), Exp}; in TakeExpected()
28 template <typename T> ExpectedHolder<T> TakeExpected(Expected<T> &&Exp) { in TakeExpected() argument
29 return TakeExpected(Exp); in TakeExpected()
44 bool result = Matcher.MatchAndExplain(*Holder.Exp, listener); in MatchAndExplain()
/external/clang/include/clang/Analysis/Analyses/
DThreadSafetyLogical.h84 LExpr *Exp; variable
87 Not(LExpr *Exp) : LExpr(LExpr::Not), Exp(Exp) {} in Not() argument
89 const LExpr *exp() const { return Exp; } in exp()
90 LExpr *exp() { return Exp; } in exp()
/external/tensorflow/tensorflow/compiler/xla/tools/
Dhlo_extractor_test.cc46 op::Exp(op::Negate(op::Parameter(0)))); in TEST_F()
53 op::Exp(op::Parameter(0))); in TEST_F()
84 op::Exp(op::Negate(op::Tanh(op::Parameter(0))))); in TEST_F()
98 op::Exp(op::Negate(op::Parameter(0))))); in TEST_F()
105 op::Exp(op::Negate(op::Tanh(op::Parameter(0)))))); in TEST_F()
/external/clang/lib/ARCMigrate/
DTransARCAssign.cpp42 bool VisitBinaryOperator(BinaryOperator *Exp) { in VisitBinaryOperator() argument
43 if (Exp->getType()->isDependentType()) in VisitBinaryOperator()
46 Expr *E = Exp->getLHS(); in VisitBinaryOperator()
59 Exp->getOperatorLoc())) { in VisitBinaryOperator()
/external/syzkaller/vendor/golang.org/x/oauth2/jws/
Djws.go38Exp int64 `json:"exp"` // the expiration time of the assertion (seconds since Unix … member
62 if c.Exp == 0 {
63 c.Exp = now.Add(time.Hour).Unix()
65 if c.Exp < c.Iat {
66 return "", fmt.Errorf("jws: invalid Exp = %v; must be later than Iat = %v", c.Exp, c.Iat)
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/NewGVN/
D2007-07-30-PredIDom.ll4 …%struct.Exp = type { %struct.Exp_*, i32, i32, i32, %struct.Exp*, %struct.Exp*, %"struct.Exp::$_10"…
5 %"struct.Exp::$_10" = type { %struct.Exp* }
6 %"struct.Exp::$_12" = type { %struct.Exp** }
11 define i8* @_ZN3Exp8toStringEj(%struct.Exp* %this, i32 %nextpc) {
/external/swiftshader/third_party/LLVM/test/Transforms/GVN/
D2007-07-30-PredIDom.ll4 …%struct.Exp = type { %struct.Exp_*, i32, i32, i32, %struct.Exp*, %struct.Exp*, %"struct.Exp::$_10"…
5 %"struct.Exp::$_10" = type { %struct.Exp* }
6 %"struct.Exp::$_12" = type { %struct.Exp** }
11 define i8* @_ZN3Exp8toStringEj(%struct.Exp* %this, i32 %nextpc) {
/external/llvm/test/Transforms/GVN/
D2007-07-30-PredIDom.ll4 …%struct.Exp = type { %struct.Exp_*, i32, i32, i32, %struct.Exp*, %struct.Exp*, %"struct.Exp::$_10"…
5 %"struct.Exp::$_10" = type { %struct.Exp* }
6 %"struct.Exp::$_12" = type { %struct.Exp** }
11 define i8* @_ZN3Exp8toStringEj(%struct.Exp* %this, i32 %nextpc) {
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/GVN/
D2007-07-30-PredIDom.ll4 …%struct.Exp = type { %struct.Exp_*, i32, i32, i32, %struct.Exp*, %struct.Exp*, %"struct.Exp::$_10"…
5 %"struct.Exp::$_10" = type { %struct.Exp* }
6 %"struct.Exp::$_12" = type { %struct.Exp** }
11 define i8* @_ZN3Exp8toStringEj(%struct.Exp* %this, i32 %nextpc) {
/external/clang/lib/Frontend/Rewrite/
DRewriteModernObjC.cpp348 Stmt *RewriteAtEncode(ObjCEncodeExpr *Exp);
351 Stmt *RewriteAtSelector(ObjCSelectorExpr *Exp);
352 Stmt *RewriteMessageExpr(ObjCMessageExpr *Exp);
353 Stmt *RewriteObjCStringLiteral(ObjCStringLiteral *Exp);
354 Stmt *RewriteObjCBoolLiteralExpr(ObjCBoolLiteralExpr *Exp);
355 Stmt *RewriteObjCBoxedExpr(ObjCBoxedExpr *Exp);
356 Stmt *RewriteObjCArrayLiteralExpr(ObjCArrayLiteral *Exp);
357 Stmt *RewriteObjCDictionaryLiteralExpr(ObjCDictionaryLiteral *Exp);
358 Stmt *RewriteObjCProtocolExpr(ObjCProtocolExpr *Exp);
423 Stmt *SynthMessageExpr(ObjCMessageExpr *Exp,
[all …]
DRewriteObjC.cpp294 Stmt *RewriteAtEncode(ObjCEncodeExpr *Exp);
297 Stmt *RewriteAtSelector(ObjCSelectorExpr *Exp);
298 Stmt *RewriteMessageExpr(ObjCMessageExpr *Exp);
299 Stmt *RewriteObjCStringLiteral(ObjCStringLiteral *Exp);
300 Stmt *RewriteObjCProtocolExpr(ObjCProtocolExpr *Exp);
359 Stmt *SynthMessageExpr(ObjCMessageExpr *Exp,
386 Stmt *SynthesizeBlockCall(CallExpr *Exp, const Expr* BlockExp);
390 Stmt *SynthBlockInitExpr(BlockExpr *Exp,
402 void CollectBlockDeclRefInfo(BlockExpr *Exp);
1976 Stmt *RewriteObjC::RewriteAtEncode(ObjCEncodeExpr *Exp) { in RewriteAtEncode() argument
[all …]
/external/capstone/arch/AArch64/
DAArch64AddressingModes.h192 uint8_t Exp = (Imm >> 4) & 0x7; in AArch64_AM_getFPImmFloat() local
202 FPUnion.I |= ((Exp & 0x4) != 0 ? 0 : 1) << 30; in AArch64_AM_getFPImmFloat()
203 FPUnion.I |= ((Exp & 0x4) != 0 ? 0x1f : 0) << 25; in AArch64_AM_getFPImmFloat()
204 FPUnion.I |= (Exp & 0x3) << 23; in AArch64_AM_getFPImmFloat()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DLibCallsShrinkWrap.cpp429 Value *Exp = CI->getArgOperand(1); in generateCondForPow() local
442 if (!Exp->getType()->isFloatTy()) in generateCondForPow()
443 V = ConstantExpr::getFPExtend(V, Exp->getType()); in generateCondForPow()
444 return BBBuilder.CreateFCmp(CmpInst::FCMP_OGT, Exp, V); in generateCondForPow()
471 if (!Exp->getType()->isFloatTy()) in generateCondForPow()
472 V = ConstantExpr::getFPExtend(V, Exp->getType()); in generateCondForPow()
474 V0 = ConstantExpr::getFPExtend(V0, Exp->getType()); in generateCondForPow()
476 Value *Cond = BBBuilder.CreateFCmp(CmpInst::FCMP_OGT, Exp, V); in generateCondForPow()
/external/tensorflow/tensorflow/core/api_def/java_api/
Dapi_def_Exp.pbtxt2 graph_op_name: "Exp"
4 name: "math.Exp"
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DAsmPrinterDwarf.cpp157 const MCExpr *Exp = in EmitReference() local
159 OutStreamer.EmitAbsValue(Exp, GetSizeOfEncodedValue(Encoding)); in EmitReference()
165 const MCExpr *Exp = in EmitReference() local
167 OutStreamer.EmitValue(Exp, GetSizeOfEncodedValue(Encoding), /*addrspace*/0); in EmitReference()

1234567891011