HomeSort by relevance Sort by last modified time
    Searched refs:Select (Results 1 - 25 of 159) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/third_party/mesa/src/src/mesa/main/
feedback.c 163 * the fields in __struct gl_contextRec::Select with the given buffer.
182 ctx->Select.Buffer = buffer;
183 ctx->Select.BufferSize = size;
184 ctx->Select.BufferCount = 0;
185 ctx->Select.HitFlag = GL_FALSE;
186 ctx->Select.HitMinZ = 1.0;
187 ctx->Select.HitMaxZ = 0.0;
203 if (ctx->Select.BufferCount < ctx->Select.BufferSize) {
204 ctx->Select.Buffer[ctx->Select.BufferCount] = value
    [all...]
  /external/mesa3d/src/mesa/main/
feedback.c 163 * the fields in __struct gl_contextRec::Select with the given buffer.
182 ctx->Select.Buffer = buffer;
183 ctx->Select.BufferSize = size;
184 ctx->Select.BufferCount = 0;
185 ctx->Select.HitFlag = GL_FALSE;
186 ctx->Select.HitMinZ = 1.0;
187 ctx->Select.HitMaxZ = 0.0;
203 if (ctx->Select.BufferCount < ctx->Select.BufferSize) {
204 ctx->Select.Buffer[ctx->Select.BufferCount] = value
    [all...]
  /external/eigen/Eigen/src/Core/
Select.h 15 /** \class Select
25 * It is the return type of DenseBase::select() and most of the time this is the only way it is used.
27 * \sa DenseBase::select(const DenseBase<ThenDerived>&, const DenseBase<ElseDerived>&) const
32 struct traits<Select<ConditionMatrixType, ThenMatrixType, ElseMatrixType> >
55 class Select : internal::no_assignment_operator,
56 public internal::dense_xpr_base< Select<ConditionMatrixType, ThenMatrixType, ElseMatrixType> >::type
60 typedef typename internal::dense_xpr_base<Select>::type Base;
61 EIGEN_DENSE_PUBLIC_INTERFACE(Select)
63 Select(const ConditionMatrixType& a_conditionMatrix,
119 * \sa class Select
124 DenseBase<Derived>::select(const DenseBase<ThenDerived>& thenMatrix, function in class:Eigen::DenseBase
138 DenseBase<Derived>::select(const DenseBase<ThenDerived>& thenMatrix, function in class:Eigen::DenseBase
153 DenseBase<Derived>::select(const typename ElseDerived::Scalar& thenScalar, function in class:Eigen::DenseBase
    [all...]
  /external/libpng/projects/visualc71/
README_zlib.txt 18 1) On the main menu, select "File | Open Solution".
24 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/chromium_org/third_party/sqlite/src/test/
fuzz_common.tcl 29 # Select
101 {([Select 1])} \
102 {[Expr $c] IN ([Select 1])} \
103 {[Expr $c] NOT IN ([Select 1])} \
104 {EXISTS ([Select 1])} \
121 # "SELECT DISTINCT", "SELECT ALL" or "SELECT"
125 "SELECT DISTINCT"
126 "SELECT ALL
    [all...]
fuzz_malloc.test 73 do_fuzzy_malloc_test fuzzy_malloc-1 -template {Select [Expr]}
74 do_fuzzy_malloc_test fuzzy_malloc-2 -template {[Select]}
91 -template {[Select]} \
  /external/chromium_org/third_party/sqlite/src/src/
walker.c 74 ** Walk all expressions associated with SELECT statement p. Do
75 ** not invoke the SELECT callback on p, but do (of course) invoke
76 ** any expr callbacks and SELECT callbacks that come from subqueries.
79 int sqlite3WalkSelectExpr(Walker *pWalker, Select *p){
92 ** FROM clause of SELECT statement p. Do not invoke the select
97 int sqlite3WalkSelectFrom(Walker *pWalker, Select *p){
114 ** Call sqlite3WalkExpr() for every expression in Select statement p.
116 ** on the compound select chain, p->pPrior.
124 int sqlite3WalkSelect(Walker *pWalker, Select *p)
    [all...]
sqliteInt.h 624 typedef struct Select Select;
    [all...]
select.c 13 ** to handle SELECT statements in SQLite.
19 ** Delete all the content of a Select structure but do not deallocate
20 ** the select structure itself.
22 static void clearSelect(sqlite3 *db, Select *p){
47 ** Allocate a new Select structure and return a pointer to that
50 Select *sqlite3SelectNew(
62 Select *pNew;
63 Select standin;
97 ** Delete the given Select structure and all of its substructures.
99 void sqlite3SelectDelete(sqlite3 *db, Select *p)
    [all...]
resolve.c 38 ** SELECT random()%5 AS x, count(*) FROM tab GROUP BY x
42 ** SELECT random()%5 AS x, count(*) FROM tab GROUP BY random()%5
293 ** SELECT a+b AS x FROM table WHERE x<10;
613 ** a SELECT statement. pE is a term in an ORDER BY or GROUP BY clause.
646 ** ORDER BY of a compound SELECT. The expression has not been
654 ** SELECT statement. Return the index i of the matching column,
664 Select *pSelect, /* The SELECT statement with the ORDER BY clause */
721 ** Analyze the ORDER BY clause in a compound SELECT statement. Modify
723 ** and N where N is the number of columns in the compound SELECT
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
StringTokenizer.cs 70 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/
StringTokenizer.cs 71 return new string[] { token, str[_tokens.Take( i + 1 ).Select( t => t.Length + 1 ).Sum() - 1].ToString() };
  /external/chromium_org/tools/cr/cr/commands/
command.py 21 def Select(cls):
22 """Called to select which command is active.
  /device/generic/goldfish/camera/
EmulatedCameraDevice.h 411 /* Values returned from the Select method of this class. */
423 /* Select on an FD event, keeping in mind thread exit message.
433 SelectRes Select(int fd, int timeout);
EmulatedQemuCameraDevice.cpp 238 getWorkerThread()->Select(-1, 1000000 / mEmulatedFPS);
  /external/chromium_org/remoting/protocol/
session_config.h 144 bool Select(const CandidateSessionConfig* client_config,
  /external/chromium_org/third_party/WebKit/Source/web/
WebInputEventFactoryMac.mm 629 // "Select"
631 return @"Select";
    [all...]
  /external/llvm/lib/Analysis/
CaptureTracking.cpp 145 case Instruction::Select:
  /external/llvm/lib/Target/Mips/
MipsISelDAGToDAG.h 27 // MipsDAGToDAGISel - MIPS specific code to select MIPS machine
83 /// \brief Select constant vector splats.
85 /// \brief Select constant vector splats whose value fits in a uimm1.
87 /// \brief Select constant vector splats whose value fits in a uimm2.
89 /// \brief Select constant vector splats whose value fits in a uimm3.
91 /// \brief Select constant vector splats whose value fits in a uimm4.
93 /// \brief Select constant vector splats whose value fits in a uimm5.
95 /// \brief Select constant vector splats whose value fits in a uimm6.
97 /// \brief Select constant vector splats whose value fits in a uimm8.
99 /// \brief Select constant vector splats whose value fits in a simm5
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelDAGToDAG.h 60 SDNode *Select(SDNode *N) override;
  /external/chromium_org/third_party/WebKit/ManualTests/inspector-wrappers/
inspector-wrappers-test-utils.js 39 str += "<li>Select the Console";
  /external/llvm/include/llvm/MC/
MCInstrDesc.h 113 Select,
330 /// \brief Return true if this is a select instruction.
332 return Flags & (1 << MCID::Select);
  /external/llvm/lib/Target/Sparc/
SparcISelDAGToDAG.cpp 28 /// SparcDAGToDAGISel - SPARC specific code to select SPARC machine
44 SDNode *Select(SDNode *N) override;
142 SDNode *SparcDAGToDAGISel::Select(SDNode *N) {
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/
sunspider-compare-results 42 --suite Select a specific benchmark suite. The default is sunspider-1.0
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
xdfprotect.asm 97 cdesc32 0x00000000, 0xFFFFF, 3 ; 0x0018 - Code Select Ring 3
98 ddesc32 0x00000000, 0xFFFFF, 3 ; 0x0020 - Data Select Ring 3

Completed in 654 milliseconds

1 2 3 4 5 6 7