Searched refs:Select (Results 1 - 25 of 263) sorted by relevance

1234567891011

/external/mesa3d/src/mesa/main/
H A Dfeedback.c156 * the fields in __struct gl_contextRec::Select with the given buffer.
174 ctx->Select.Buffer = buffer;
175 ctx->Select.BufferSize = size;
176 ctx->Select.BufferCount = 0;
177 ctx->Select.HitFlag = GL_FALSE;
178 ctx->Select.HitMinZ = 1.0;
179 ctx->Select.HitMaxZ = 0.0;
195 if (ctx->Select.BufferCount < ctx->Select.BufferSize) {
196 ctx->Select
[all...]
/external/eigen/Eigen/src/Core/
H A DSelect.h15 /** \class Select
32 struct traits<Select<ConditionMatrixType, ThenMatrixType, ElseMatrixType> >
52 class Select : public internal::dense_xpr_base< Select<ConditionMatrixType, ThenMatrixType, ElseMatrixType> >::type, class in namespace:Eigen
57 typedef typename internal::dense_xpr_base<Select>::type Base;
58 EIGEN_DENSE_PUBLIC_INTERFACE(Select)
61 Select(const ConditionMatrixType& a_conditionMatrix, function in class:Eigen::Select
119 * \sa class Select
123 inline const Select<Derived,ThenDerived,ElseDerived>
127 return Select<Derive
[all...]
/external/libpng/projects/visualc71/
H A DREADME_zlib.txt24 binaries set "zlib" as the startup project (Select "zlib" tree view item +
26 binaries set it to "example" (Select "example" tree view item + Project |
28 "minigzip" (Select "minigzip" tree view item + Project | Set as StartUp
31 4) Select "Build | Configuration Manager...".
34 5) Select "Build | Clean Solution".
36 6) Select "Build | Build Solution (Ctrl-Shift-B)"
/external/tensorflow/tensorflow/compiler/xla/tests/
H A Dselect_test.cc42 auto result = builder.Select(pred, on_true, on_false);
52 auto result = builder.Select(pred, on_true, on_false);
62 auto result = builder.Select(pred, on_true, on_false);
72 auto select = builder.Select(pred, on_true, on_false);
82 auto select = builder.Select(pred, on_true, on_false);
97 auto select = builder.Select(cmp, on_true, on_false);
111 auto select = builder.Select(cmp, on_true, on_false);
125 auto select = builder.Select(cmp, on_true, on_false);
145 auto select = builder.Select(cmp, v1, v2);
186 auto select = builder.Select(cm
[all...]
/external/pdfium/xfa/fxfa/parser/
H A Dcxfa_select.cpp30 XFA_Element::Select,
H A Dcxfa_choicelist.cpp24 (void*)XFA_AttributeEnum::Select},
H A Dcxfa_query.cpp15 {XFA_Element::Select, 1, 0},
/external/python/cpython2/Lib/bsddb/test/
H A Dtest_dbtables.py77 values = self.tdb.Select(
122 values = self.tdb.Select(tabname, [col2],
125 values = self.tdb.Select(tabname, [col2],
168 self.tdb.Select(tabname, [], conditions={'foo': '123'})
195 values = self.tdb.Select(tabname, ['b', 'a', 'd'],
202 values = self.tdb.Select(
208 values = self.tdb.Select(tabname, ['b'],
246 values = self.tdb.Select(tabname, ['b', 'a', 'd'],
295 values = self.tdb.Select(
302 values = self.tdb.Select(
[all...]
/external/curl/docs/cmdline-opts/
H A Dengine.d6 Select the OpenSSL crypto engine to use for cipher operations. Use --engine
/external/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelDAGToDAG.cpp57 void Select(SDNode *Node) override;
70 void WebAssemblyDAGToDAGISel::Select(SDNode *Node) { function in class:WebAssemblyDAGToDAGISel
93 // Select the default instruction.
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
H A Dmatrix_band_part_op.cc73 num_lower = builder->Select(
76 num_upper = builder->Select(
85 auto output = builder->Select(
H A Delu_op.cc40 ctx->SetOutput(0, b->Select(pred, ctx->Input(0), expm1));
57 ctx->SetOutput(0, b->Select(pred, grad, exp_grad));
78 ctx->SetOutput(0, b->Select(pred, b->Mul(scale, ctx->Input(0)),
101 ctx->SetOutput(0, b->Select(pred, lin_grad, exp_grad));
H A Drelu_op.cc64 ctx->SetOutput(0, b->Select(pred, ctx->Input(0), zero));
81 b->Select(b->And(b->Lt(ctx->Input(1), six), b->Gt(ctx->Input(1), zero)),
H A Dfake_quantize_ops.cc64 b->Select(b->Le(zero_point_from_min, quant_min), quant_min,
65 b->Select(b->Ge(zero_point_from_min, quant_max), quant_max,
178 b->Select(between_nudged_min_max, gradient, zeroes);
264 b->Select(between_nudged_min_max, gradient, zeroes);
269 b->ReduceAll(b->Select(below_min, gradient, zeroes), zero,
275 b->ReduceAll(b->Select(above_max, gradient, zeroes), zero,
H A Dimage_ops.cc41 auto saturation = b->Select(b->Gt(value, zero), b->Div(range, value), zeros);
45 auto hue = b->Select(b->Eq(green, value),
50 hue = b->Select(b->Eq(red, value), b->Mul(norm, b->Sub(green, blue)), hue);
51 hue = b->Select(b->Gt(range, zero), hue, zeros);
52 hue = b->Select(b->Lt(hue, zero), b->Add(hue, one), hue);
295 hue = b->Select(b->Lt(hue, zero), b->Rem(b->Add(one, hue), one), hue);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DStringTokenizer.cs70 return new string[] { token, str[EnumerableExtensions.Sum(EnumerableExtensions.Select(EnumerableExtensions.Take(_tokens, i + 1),
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStringTokenizer.cs71 return new string[] { token, str[_tokens.Take( i + 1 ).Select( t => t.Length + 1 ).Sum() - 1].ToString() };
/external/wpa_supplicant_8/hs20/server/www/
H A Dsignup.php34 Select a username and password. Leave password empty to get automatically
/external/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp370 /// Returns true if the instruction is a Select(ICmp(X, Y), X, Y) instruction
378 SelectInst *Select = nullptr; local
383 if (!Cmp->hasOneUse() || !(Select = dyn_cast<SelectInst>(*I->user_begin())))
385 return InstDesc(Select, Prev.getMinMaxKind());
389 if (!(Select = dyn_cast<SelectInst>(I)))
401 if (m_UMin(m_Value(CmpLeft), m_Value(CmpRight)).match(Select))
402 return InstDesc(Select, MRK_UIntMin);
403 else if (m_UMax(m_Value(CmpLeft), m_Value(CmpRight)).match(Select))
404 return InstDesc(Select, MRK_UIntMax);
405 else if (m_SMax(m_Value(CmpLeft), m_Value(CmpRight)).match(Select))
652 Value *Select = Builder.CreateSelect(Cmp, Left, Right, "rdx.minmax.select"); local
[all...]
/external/pdfium/fpdfsdk/formfiller/
H A Dcffl_listbox.cpp59 pWnd->Select(i);
66 pWnd->Select(i);
187 pListBox->Select(item);
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
H A DFieldMaskPartial.cs62 JsonFormatter.WriteString(writer, string.Join(",", paths.Select(JsonFormatter.ToCamelCase)));
/external/squashfs-tools/squashfs-tools/
H A DMakefile97 # Select whether you wish xattrs to be stored by Mksquashfs and extracted
212 $(error "No compressor selected! Select one or more of GZIP, LZMA, XZ, LZO or \
/external/autotest/client/cros/cellular/
H A Dether_io_rf_switch.py117 def Select(switch, remaining_args): function in function:CommandLineUtility
144 Select(switch, arguments)
/external/llvm/lib/Target/BPF/
H A DBPFISelDAGToDAG.cpp49 void Select(SDNode *N) override;
118 void BPFDAGToDAGISel::Select(SDNode *Node) { function in class:BPFDAGToDAGISel
180 // Select the default instruction
/external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
H A DBlackfinISelDAGToDAG.cpp53 SDNode *Select(SDNode *N);
77 SDNode *BlackfinDAGToDAGISel::Select(SDNode *N) { function in class:BlackfinDAGToDAGISel

Completed in 614 milliseconds

1234567891011