Home
last modified time | relevance | path

Searched refs:Eval (Results 1 – 25 of 164) sorted by relevance

1234567

/external/mesa3d/src/mesa/vbo/
Dvbo_exec_eval.c80 if (ctx->Eval.Map1Color4) in vbo_exec_eval_update()
83 if (ctx->Eval.Map2Color4) in vbo_exec_eval_update()
86 if (ctx->Eval.Map1TextureCoord4) in vbo_exec_eval_update()
88 else if (ctx->Eval.Map1TextureCoord3) in vbo_exec_eval_update()
90 else if (ctx->Eval.Map1TextureCoord2) in vbo_exec_eval_update()
92 else if (ctx->Eval.Map1TextureCoord1) in vbo_exec_eval_update()
95 if (ctx->Eval.Map2TextureCoord4) in vbo_exec_eval_update()
97 else if (ctx->Eval.Map2TextureCoord3) in vbo_exec_eval_update()
99 else if (ctx->Eval.Map2TextureCoord2) in vbo_exec_eval_update()
101 else if (ctx->Eval.Map2TextureCoord1) in vbo_exec_eval_update()
[all …]
/external/google-fruit/tests/meta/
Dcommon.h55 #define Assert(...) static_assert(Eval<__VA_ARGS__>::value, "")
61 …typename CheckIfError<Eval<If(IsSame(__VA_ARGS__), True, …
67Eval<If(IsSame(__VA_ARGS__), True, ConstructError(DifferentErrorTag, __VA_ARGS__))>>::type), \
72Eval<If(IsSameSet(__VA_ARGS__), True, ConstructError(DifferentErrorTag, __VA_ARGS__))>>::type), \
75 …static_assert(true || sizeof(typename CheckIfError<Eval<If(IsProofTreeEqualTo(__VA_ARGS__), True, …
79 …static_assert(true || sizeof(typename CheckIfError<Eval<CheckForestEqualTo(__VA_ARGS__)>>::type), …
83 …sizeof(typename CheckIfError<Eval<If(Not(IsSame(__VA_ARGS__)), True, …
89Eval<If(Not(IsSame(__VA_ARGS__)), True, ConstructError(SameErrorTag, __VA_ARGS__))>>::type), \
92 …static_assert(true || sizeof(typename CheckIfError<Eval<If(Not(IsProofTreeEqualTo(__VA_ARGS__)), T…
99Eval<If(Not(IsForestEqualTo(__VA_ARGS__)), True, ConstructError(SameErrorTag, __VA_ARGS__))>>::typ…
/external/mesa3d/src/mesa/main/
Deval.c773 ctx->Eval.MapGrid1un = un; in _mesa_MapGrid1f()
774 ctx->Eval.MapGrid1u1 = u1; in _mesa_MapGrid1f()
775 ctx->Eval.MapGrid1u2 = u2; in _mesa_MapGrid1f()
776 ctx->Eval.MapGrid1du = (u2 - u1) / (GLfloat) un; in _mesa_MapGrid1f()
803 ctx->Eval.MapGrid2un = un; in _mesa_MapGrid2f()
804 ctx->Eval.MapGrid2u1 = u1; in _mesa_MapGrid2f()
805 ctx->Eval.MapGrid2u2 = u2; in _mesa_MapGrid2f()
806 ctx->Eval.MapGrid2du = (u2 - u1) / (GLfloat) un; in _mesa_MapGrid2f()
807 ctx->Eval.MapGrid2vn = vn; in _mesa_MapGrid2f()
808 ctx->Eval.MapGrid2v1 = v1; in _mesa_MapGrid2f()
[all …]
Denable.c317 if (ctx->Eval.AutoNormal == state) in _mesa_set_enable()
320 ctx->Eval.AutoNormal = state; in _mesa_set_enable()
502 if (ctx->Eval.Map1Color4 == state) in _mesa_set_enable()
505 ctx->Eval.Map1Color4 = state; in _mesa_set_enable()
510 if (ctx->Eval.Map1Index == state) in _mesa_set_enable()
513 ctx->Eval.Map1Index = state; in _mesa_set_enable()
518 if (ctx->Eval.Map1Normal == state) in _mesa_set_enable()
521 ctx->Eval.Map1Normal = state; in _mesa_set_enable()
526 if (ctx->Eval.Map1TextureCoord1 == state) in _mesa_set_enable()
529 ctx->Eval.Map1TextureCoord1 = state; in _mesa_set_enable()
[all …]
Dattrib.c324 attr->AutoNormal = ctx->Eval.AutoNormal; in _mesa_PushAttrib()
341 attr->Map1Color4 = ctx->Eval.Map1Color4; in _mesa_PushAttrib()
342 attr->Map1Index = ctx->Eval.Map1Index; in _mesa_PushAttrib()
343 attr->Map1Normal = ctx->Eval.Map1Normal; in _mesa_PushAttrib()
344 attr->Map1TextureCoord1 = ctx->Eval.Map1TextureCoord1; in _mesa_PushAttrib()
345 attr->Map1TextureCoord2 = ctx->Eval.Map1TextureCoord2; in _mesa_PushAttrib()
346 attr->Map1TextureCoord3 = ctx->Eval.Map1TextureCoord3; in _mesa_PushAttrib()
347 attr->Map1TextureCoord4 = ctx->Eval.Map1TextureCoord4; in _mesa_PushAttrib()
348 attr->Map1Vertex3 = ctx->Eval.Map1Vertex3; in _mesa_PushAttrib()
349 attr->Map1Vertex4 = ctx->Eval.Map1Vertex4; in _mesa_PushAttrib()
[all …]
/external/google-fruit/include/fruit/impl/
Dcomponent_functors.defn.h85 using Result = Eval<GetResult(Op2)>;
87 Eval<Op2>()(entries); in operator()
88 Eval<Op1>()(entries); in operator()
91 return Eval<Op1>().numEntries() + Eval<Op2>().numEntries(); in numEntries()
149 using Result = Eval<Comp1>;
181 using Result = Eval<R>;
194 using Result = Eval<R>;
215 using Result = Eval<R>;
272 Eval<OptionalAnnotatedI>>;
344 using Result = Eval<R>;
[all …]
Dfruit_assert.h23 #define FruitStaticAssert(...) static_assert(fruit::impl::meta::Eval<__VA_ARGS__>::value, "")
34 #define FruitDelegateCheck(...) static_assert(true || sizeof(fruit::impl::meta::Eval<__VA_ARGS__>),…
35 #define FruitDisplayErrorForType(...) static_assert(false && sizeof(fruit::impl::meta::Eval<__VA_AR…
Dcomponent.defn.h37 using ConvertTo = Eval<Call(ReverseComposeFunctors(Id<ComponentFunctor(ConvertComponent, Comp)>,
43Eval<Call(ReverseComposeFunctors(Id<ProcessBinding(Binding)>, Id<ProcessBinding(PreviousBindings)>…
60 fruit::impl::meta::Eval<fruit::impl::meta::CheckNoLoopInDeps(typename Op::Result)>>::type(); in Component()
174 using Op = fruit::impl::meta::Eval<fruit::impl::meta::CheckNormalizedTypes( in addInstanceMultibinding()
185 using Op = fruit::impl::meta::Eval<fruit::impl::meta::CheckNormalizedTypes( in addInstanceMultibinding()
195 using Op = fruit::impl::meta::Eval<fruit::impl::meta::CheckNormalizedTypes( in addInstanceMultibindings()
205 using Op = fruit::impl::meta::Eval<fruit::impl::meta::CheckNormalizedTypes( in addInstanceMultibindings()
Dinjector.defn.h58 using type = Eval<If(
80 using type = Eval<PropagateError(CheckInjectableType(RemoveAnnotations(Type<T>)),
133 using Op = fruit::impl::meta::Eval<fruit::impl::meta::CheckNormalizedTypes( in getMultibindings()
145 …fruit::impl::meta::Eval<fruit::impl::meta::AddPointerInAnnotatedType(fruit::impl::meta::Type<P>)>>… in FRUIT_DEPRECATED_DEFINITION()
/external/gemmlowp/internal/
Doutput.h55 OutputType Eval(InputType input, int, int) const { in Eval() function
57 output.buf = buffer_eval_impl.Eval(input.buf); in Eval()
74 OutputType Eval(InputType input) const {
100 OutputType Eval(InputType input, int row, int col) const {
131 OutputType Eval(InputType input) const {
162 OutputType Eval(InputType input) const {
195 OutputType Eval(InputType input) const {
218 OutputType Eval(InputType input) const {
237 OutputType Eval(InputType input, int row, int col) const {
256 OutputType Eval(InputType input) const {
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
DHexagonConstPropagation.cpp660 bool Eval = MCE.evaluate(UseR, Cells.get(UseR.Reg), SrcC); in visitPHI() local
664 Changed |= Eval ? DefC.meet(SrcC) in visitPHI()
678 bool Eval = MCE.evaluate(MI, Cells, Outputs); in visitNonBranch() local
680 if (Eval) { in visitNonBranch()
699 if (!Eval) { in visitNonBranch()
822 bool Eval = MCE.evaluate(MI, Cells, Targets, DoNext); in computeBlockSuccessors() local
823 if (!Eval) in computeBlockSuccessors()
1078 bool Eval = evaluate(R, L, RC); in getCell() local
1079 return Eval && !RC.isBottom(); in getCell()
1381 bool Eval = constToInt(LS2.Values[i], A) && in evaluateANDrr() local
[all …]
/external/tensorflow/tensorflow/lite/kernels/
Dmirror_pad.cc88 int Eval(EvalData<T>* eval_data, int current_dim, int flat_index, in Eval() function
120 output_index = Eval(eval_data, current_dim + 1, flat_index + i * multiplier, in Eval()
125 output_index = Eval(eval_data, current_dim + 1, flat_index + i * multiplier, in Eval()
131 output_index = Eval(eval_data, current_dim + 1, flat_index + i * multiplier, in Eval()
155 TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) { in Eval() function
204 Eval<type>(&eval_data, 0, 0, output_index); in Eval()
268 mirror_pad::Prepare, mirror_pad::Eval}; in Register_MIRROR_PAD()
Dfloor.cc47 TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) { in Eval() function
66 floor::Eval<floor::kReference>}; in Register_FLOOR_REF()
73 floor::Eval<floor::kGenericOptimized>}; in Register_FLOOR()
Dresize_bilinear.cc77 TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) { in Eval() function
129 resize_bilinear::Eval<resize_bilinear::kReference>}; in Register_RESIZE_BILINEAR_REF()
136 resize_bilinear::Eval<resize_bilinear::kGenericOptimized>}; in Register_RESIZE_BILINEAR_GENERIC_OPT()
143 resize_bilinear::Eval<resize_bilinear::kNeonOptimized>}; in Register_RESIZE_BILINEAR_NEON_OPT()
Dresize_nearest_neighbor.cc75 TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) { in Eval() function
129 resize_nearest_neighbor::Eval<resize_nearest_neighbor::kReference>}; in Register_RESIZE_NEAREST_NEIGHBOR_REF()
136 resize_nearest_neighbor::Eval< in Register_RESIZE_NEAREST_NEIGHBOR_GENERIC_OPT()
144 resize_nearest_neighbor::Eval<resize_nearest_neighbor::kNeonOptimized>}; in Register_RESIZE_NEAREST_NEIGHBOR_NEON_OPT()
Ddiv.cc128 TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) { in Eval() function
153 div::Eval<div::kReference>}; in Register_DIV_REF()
159 div::Eval<div::kGenericOptimized>}; in Register_DIV_GENERIC_OPT()
165 div::Eval<div::kNeonOptimized>}; in Register_DIV_NEON_OPT()
Dlocal_response_norm.cc59 TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) { in Eval() function
97 local_response_norm::Eval<local_response_norm::kReference>}; in Register_LOCAL_RESPONSE_NORM_REF()
104 local_response_norm::Eval<local_response_norm::kGenericOptimized>}; in Register_LOCAL_RESPONSE_NORM_GENERIC_OPT()
Dpad.cc120 TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) { in Eval() function
278 pad::Eval<pad::kReference>}; in Register_PAD_REF()
284 pad::Eval<pad::kGenericOptimized>}; in Register_PAD_GENERIC_OPT()
293 pad::Eval<pad::kReference>}; in Register_PADV2_REF()
299 pad::Eval<pad::kGenericOptimized>}; in Register_PADV2_GENERIC_OPT()
Dspace_to_depth.cc76 TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) { in Eval() function
140 space_to_depth::Eval<space_to_depth::kReference>}; in Register_SPACE_TO_DEPTH_REF()
147 space_to_depth::Eval<space_to_depth::kGenericOptimized>}; in Register_SPACE_TO_DEPTH_GENERIC_OPT()
Dmaximum_minimum.cc100 TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) { in Eval() function
140 maximum_minimum::Eval<maximum_minimum::kReference, in Register_MAXIMUM_REF()
148 maximum_minimum::Eval<maximum_minimum::kReference, in Register_MINIMUM_REF()
Dl2norm.cc73 TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) { in Eval() function
131 l2norm::Eval<l2norm::kReference>}; in Register_L2NORM_REF()
137 l2norm::Eval<l2norm::kGenericOptimized>}; in Register_L2NORM_GENERIC_OPT()
Drank.cc41 TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) { in Eval() function
59 static TfLiteRegistration r = {nullptr, nullptr, rank::Prepare, rank::Eval}; in Register_RANK()
/external/clang/lib/AST/
DDecl.cpp2082 if (auto *Eval = Init.dyn_cast<EvaluatedStmt *>()) { in setInit() local
2083 Eval->~EvaluatedStmt(); in setInit()
2084 getASTContext().Deallocate(Eval); in setInit()
2121 auto *Eval = Init.dyn_cast<EvaluatedStmt *>(); in ensureEvaluatedStmt() local
2122 if (!Eval) { in ensureEvaluatedStmt()
2127 Eval = new (getASTContext()) EvaluatedStmt; in ensureEvaluatedStmt()
2128 Eval->Value = Init.get<Stmt *>(); in ensureEvaluatedStmt()
2129 Init = Eval; in ensureEvaluatedStmt()
2131 return Eval; in ensureEvaluatedStmt()
2148 EvaluatedStmt *Eval = ensureEvaluatedStmt(); in evaluateValue() local
[all …]
/external/mesa3d/prebuilt-intermediates/main/
Dget_hash.h411 { GL_AUTO_NORMAL, CONTEXT_BOOL(Eval.AutoNormal), NO_EXTRA },
454 { GL_MAP1_COLOR_4, CONTEXT_BOOL(Eval.Map1Color4), NO_EXTRA },
455 { GL_MAP1_GRID_DOMAIN, CONTEXT_FLOAT2(Eval.MapGrid1u1), NO_EXTRA },
456 { GL_MAP1_GRID_SEGMENTS, CONTEXT_INT(Eval.MapGrid1un), NO_EXTRA },
457 { GL_MAP1_INDEX, CONTEXT_BOOL(Eval.Map1Index), NO_EXTRA },
458 { GL_MAP1_NORMAL, CONTEXT_BOOL(Eval.Map1Normal), NO_EXTRA },
459 { GL_MAP1_TEXTURE_COORD_1, CONTEXT_BOOL(Eval.Map1TextureCoord1), NO_EXTRA },
460 { GL_MAP1_TEXTURE_COORD_2, CONTEXT_BOOL(Eval.Map1TextureCoord2), NO_EXTRA },
461 { GL_MAP1_TEXTURE_COORD_3, CONTEXT_BOOL(Eval.Map1TextureCoord3), NO_EXTRA },
462 { GL_MAP1_TEXTURE_COORD_4, CONTEXT_BOOL(Eval.Map1TextureCoord4), NO_EXTRA },
[all …]
/external/google-fruit/include/fruit/
Dinjector.h223 using Check1 = typename fruit::impl::meta::CheckIfError<fruit::impl::meta::Eval<
228 …using Comp = fruit::impl::meta::Eval<fruit::impl::meta::ConstructComponentImpl(fruit::impl::meta::…
234 …using Check3 = typename fruit::impl::meta::CheckIfError<fruit::impl::meta::Eval<fruit::impl::meta:…

1234567