Lines Matching refs:top
1901 ** evaluated outside of any trigger. This is the "top level"
1902 ** trigger context. If a trigger fires from the top level, a
1913 ** ^Thus, when called from the top level, this function returns the
1915 ** that also occurred at the top level. ^(Within the body of a trigger,
2526 ** top-level SQL code.
9393 int addrInTop; /* Top of the IN loop */
17529 ** VDBE. This information used to all be at the top of the single
25868 ** meta-layer over top of the primitive locking implemented above. For
38921 int top; /* First byte of cell content area */
38938 top = get2byte(&data[hdr+5]);
38939 if( gap>top ) return SQLITE_CORRUPT_BKPT;
38940 testcase( gap+2==top );
38941 testcase( gap+1==top );
38942 testcase( gap==top );
38948 top = get2byte(&data[hdr+5]);
38949 }else if( gap+2<=top ){
38986 testcase( gap+2+nByte==top );
38987 if( gap+2+nByte>top ){
38990 top = get2byte(&data[hdr+5]);
38991 assert( gap+nByte<=top );
39001 top -= nByte;
39002 put2byte(&data[hdr+5], top);
39003 assert( top+nByte <= pPage->pBt->usableSize );
39004 *pIdx = top;
39087 int top;
39090 top = get2byte(&data[hdr+5]) + get2byte(&data[pbegin+2]);
39091 put2byte(&data[hdr+5], top);
39159 u16 top; /* First byte of the cell content area */
39173 top = get2byte(&data[hdr+5]);
39215 nFree = data[hdr+7] + top;
50940 ** This is the top-level implementation of sqlite3_step(). Call
52122 ** Memory cells for cursors are allocated at the top of the address
53507 ** structure to provide access to the top P1 values as the result
53540 ** The statement transaction is never a top-level transaction. Hence
58245 ** top. */
59197 ** return the top-level walk call.
62364 /* The OP_Found at the top of this branch jumps here when true,
65149 int topOfLoop; /* The top of the loop */
67466 ** more than one of the substrings, entries toward the top of
68760 int addr1; /* Address of top of loop */
73103 ** These operations are identified in the comment at the top of this file
73246 ** These operations are identified in the comment at the top of this file
74217 ** only called from the top-level */
74244 ** This routine should be called when the top of the stack holds a
74439 int addrCont = 0; /* Top of insert loop. Label "C" in templates 3 and 4 */
74752 /* This is the top of the main insertion loop */
74754 /* This block codes the top of loop only. The complete loop is the
74766 /* This block codes the top of loop only. The complete loop is the
79638 ** Insert code into "v" that will push the record on the top of the
79703 ** stack if the top N elements are not distinct.
83068 int addrTopOfLoop; /* Top of the input loop */
84517 ** list of the top-level Parse object sooner rather than later. */
85171 /* Top of the update loop */
85415 int addr; /* Address of top of loop */
87846 int op; /* Top-level operator. pExpr->op */
89923 /* Top of the loop body */
89980 ** The top of the loop looks like this:
90056 ** over the top of the loop into the body of it. In this case the
91711 int yyidx; /* Index of top element in stack */
92895 yyStackEntry *yymsp; /* The top of the parser's stack */
98315 ** The root node is the top node of the segment's tree after encoding
98317 ** This could be either a leaf node or an interior node. If the top