HomeSort by relevance Sort by last modified time
    Searched full:nexpr (Results 1 - 22 of 22) sorted by null

  /external/dropbear/libtommath/tombc/
grammar.txt 25 expr := -nexpr | nexpr
26 nexpr := integer | identifier | ( numexpression ) | identifier[numexpression]
  /ndk/sources/host-tools/nawk-20071023/
parse.c 137 x->ntype = NEXPR;
146 x->ntype = NEXPR;
155 x->ntype = NEXPR;
164 x->ntype = NEXPR;
awk.h 176 #define NEXPR 3
183 #define isexpr(n) ((n)->ntype == NEXPR)
  /external/chromium_org/third_party/sqlite/src/src/
resolve.c 51 int iCol, /* A column in the result set. 0..pEList->nExpr-1 */
59 assert( iCol>=0 && iCol<pEList->nExpr );
301 for(j=0; j<pEList->nExpr; j++){
515 int n = pList ? pList->nExpr : 0; /* Number of arguments */
634 for(i=0; i<pEList->nExpr; i++){
696 for(i=0; i<pEList->nExpr; i++){
749 if( pOrderBy->nExpr>db->aLimit[SQLITE_LIMIT_COLUMN] ){
754 for(i=0; i<pOrderBy->nExpr; i++){
767 for(i=0, pItem=pOrderBy->a; i<pOrderBy->nExpr; i++, pItem++){
773 if( iCol<=0 || iCol>pEList->nExpr ){
    [all...]
select.c 419 int nExpr = pOrderBy->nExpr;
420 int regBase = sqlite3GetTempRange(pParse, nExpr+2);
424 sqlite3VdbeAddOp2(v, OP_Sequence, pOrderBy->iECursor, regBase+nExpr);
425 sqlite3ExprCodeMove(pParse, regData, regBase+nExpr+1, 1);
426 sqlite3VdbeAddOp3(v, OP_MakeRecord, regBase, nExpr + 2, regRecord);
429 sqlite3ReleaseTempRange(pParse, regBase, nExpr+2);
504 int nExpr /* Number of result columns returned by SELECT */
507 if( nExpr>1 && (eDest==SRT_Mem || eDest==SRT_Set) ){
559 nResultCol = pEList->nExpr;
    [all...]
expr.c 298 for(i=0; i<p->nExpr; i++){
858 pNew->nExpr = pNew->nAlloc = p->nExpr;
859 pNew->a = pItem = sqlite3DbMallocRaw(db, p->nExpr*sizeof(p->a[0]) );
865 for(i=0; i<p->nExpr; i++, pItem++, pOldItem++){
992 if( pList->nAlloc<=pList->nExpr ){
    [all...]
walker.c 66 for(i=p->nExpr, pItem=p->a; i>0; i--, pItem++){
build.c     [all...]
attach.c 515 for(i=0, pItem=pList->a; i<pList->nExpr; i++, pItem++){
parse.y 582 if( A ) A->a[A->nExpr-1].sortOrder = (u8)Z;
794 if( Y && Y->nExpr>pParse->db->aLimit[SQLITE_LIMIT_FUNCTION_ARG] ){
    [all...]
insert.c 617 nColumn = pSelect->pEList->nExpr;
673 nColumn = pList ? pList->nExpr : 0;
    [all...]
where.c 460 for(i=0; i<pList->nExpr; i++){
747 if( pList->nExpr!=2 ){
    [all...]
update.c 194 for(i=0; i<pChanges->nExpr; i++){
func.c     [all...]
trigger.c 619 for(e=0; e<pEList->nExpr; e++){
    [all...]
sqliteInt.h     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_expr.c 861 int nExpr;
894 nExpr = sqlite3_value_bytes(argv[1]);
906 pTokenizer, azCol, nCol, nCol, zExpr, nExpr, &pExpr
fts3.c     [all...]
  /external/linux-tools-perf/util/
probe-finder.c 421 size_t nexpr; local
429 ret = dwarf_getlocation(&attr, &expr, &nexpr);
430 if (ret < 0 || nexpr == 0)
433 if (expr[0].atom != DW_OP_plus_uconst || nexpr != 1) {
435 expr[0].atom, nexpr);
    [all...]
  /external/libsepol/src/
write.c 867 uint32_t buf[3], nexpr; local
871 nexpr = 0;
873 nexpr++;
876 buf[1] = cpu_to_le32(nexpr);
    [all...]
policydb.c 1973 size_t nexpr; local
    [all...]
  /external/mksh/src/
funcs.c     [all...]

Completed in 448 milliseconds