OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:nId
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/sqlite/src/src/
complete.c
196
int
nId
;
197
for(
nId
=1; IdChar(zSql[
nId
]);
nId
++){}
203
if(
nId
==6 && sqlite3StrNICmp(zSql, "create", 6)==0 ){
211
if(
nId
==7 && sqlite3StrNICmp(zSql, "trigger", 7)==0 ){
213
}else if(
nId
==4 && sqlite3StrNICmp(zSql, "temp", 4)==0 ){
215
}else if(
nId
==9 && sqlite3StrNICmp(zSql, "temporary", 9)==0 ){
223
if(
nId
==3 && sqlite3StrNICmp(zSql, "end", 3)==0 ){
227
if(
nId
==7 && sqlite3StrNICmp(zSql, "explain", 7)==0 )
[
all
...]
resolve.c
211
for(k=0; k<pUsing->
nId
; k++){
520
int
nId
; /* Number of characters in function name */
528
nId
= sqlite3Strlen30(zId);
529
pDef = sqlite3FindFunction(pParse->db, zId,
nId
, n, enc, 0);
531
pDef = sqlite3FindFunction(pParse->db, zId,
nId
, -1, enc, 0);
555
sqlite3ErrorMsg(pParse, "misuse of aggregate function %.*s()",
nId
,zId);
559
sqlite3ErrorMsg(pParse, "no such function: %.*s",
nId
, zId);
563
nId
, zId);
[
all
...]
expr.c
925
pNew->
nId
= pNew->nAlloc = p->
nId
;
926
pNew->a = sqlite3DbMallocRaw(db, p->
nId
*sizeof(p->a[0]) );
931
for(i=0; i<p->
nId
; i++){
[
all
...]
sqliteInt.h
[
all
...]
/external/llvm/lib/CodeGen/
RegAllocPBQP.cpp
252
PBQPRAGraph::NodeId
nId
= g.addNode(std::move(nodeCosts));
255
p->recordVReg(vreg,
nId
, vrAllowed.begin(), vrAllowed.end());
471
for (auto
NId
: g.nodeIds()) {
472
unsigned vreg = problem.getVRegForNode(
NId
);
473
unsigned alloc = solution.getSelection(
NId
);
/external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c
[
all
...]
Completed in 423 milliseconds