Lines Matching refs:u32

115   u32 n;                 /* Bytes of content, or number of sub-nodes */
118 u32 iAppend; /* 2: More terms for ARRAY and OBJECT */
119 u32 iKey; /* 3: Key for ARRAY objects in json_tree() */
120 u32 iReplace; /* 4: Replacement content for JNODE_REPLACE */
128 u32 nNode; /* Number of slots of aNode[] used */
129 u32 nAlloc; /* Number of slots of aNode[] allocated */
132 u32 *aUp; /* Index of parent of each node */
137 u32 iHold; /* Replace cache line with the lowest iHold value */
191 static int jsonGrow(JsonString *p, u32 N){ in jsonGrow()
218 static void jsonAppendRaw(JsonString *p, const char *zIn, u32 N){ in jsonAppendRaw()
258 static void jsonAppendString(JsonString *p, const char *zIn, u32 N){ in jsonAppendString()
259 u32 i; in jsonAppendString()
313 u32 n = (u32)sqlite3_value_bytes(pValue); in jsonAppendValue()
319 u32 n = (u32)sqlite3_value_bytes(pValue); in jsonAppendValue()
364 static u32 jsonNodeSize(JsonNode *pNode){ in jsonNodeSize()
438 u32 j = 1; in jsonRenderNode()
457 u32 j = 1; in jsonRenderNode()
513 static u32 jsonHexToInt4(const char *z){ in jsonHexToInt4()
514 u32 v; in jsonHexToInt4()
609 u32 i; in jsonReturn()
610 u32 n = pNode->n; in jsonReturn()
613 u32 j; in jsonReturn()
628 u32 v = jsonHexToInt4(z+i+1); in jsonReturn()
637 u32 vlo; in jsonReturn()
687 static int jsonParseAddNode(JsonParse*,u32,u32,const char*);
704 u32 eType, /* Node type */ in jsonParseAddNodeExpand()
705 u32 n, /* Content size or sub-node count */ in jsonParseAddNodeExpand()
708 u32 nNew; in jsonParseAddNodeExpand()
731 u32 eType, /* Node type */ in jsonParseAddNode()
732 u32 n, /* Content size or sub-node count */ in jsonParseAddNode()
765 static int jsonParseValue(JsonParse *pParse, u32 i){ in jsonParseValue()
767 u32 j; in jsonParseValue()
783 if( x==(-2) && pParse->nNode==(u32)iThis+1 ) return j+1; in jsonParseValue()
804 pParse->aNode[iThis].n = pParse->nNode - (u32)iThis - 1; in jsonParseValue()
817 if( x==(-3) && pParse->nNode==(u32)iThis+1 ) return j+1; in jsonParseValue()
827 pParse->aNode[iThis].n = pParse->nNode - (u32)iThis - 1; in jsonParseValue()
959 static void jsonParseFillInParentage(JsonParse *pParse, u32 i, u32 iParent){ in jsonParseFillInParentage()
961 u32 j; in jsonParseFillInParentage()
987 u32 *aUp; in jsonParseFindParents()
989 aUp = pParse->aUp = sqlite3_malloc64( sizeof(u32)*pParse->nNode ); in jsonParseFindParents()
1023 u32 iMinHold = 0xffffffff; in jsonParseCached()
1024 u32 iMaxHold = 0; in jsonParseCached()
1074 static int jsonLabelCompare(JsonNode *pNode, const char *zKey, u32 nKey){ in jsonLabelCompare()
1099 u32 iRoot, /* Begin the search at this node */ in jsonLookupStep()
1104 u32 i, j, nKey; in jsonLookupStep()
1148 u32 iStart, iLabel; in jsonLookupStep()
1226 u32 iStart; in jsonLookupStep()
1374 u32 i; in jsonParseFunc()
1482 u32 i; in jsonArrayLengthFunc()
1620 u32 iTarget, /* Node of the TARGET in pParse */ in jsonMergePatch()
1623 u32 i, j; in jsonMergePatch()
1624 u32 iRoot; in jsonMergePatch()
1638 u32 nKey; in jsonMergePatch()
1740 u32 n; in jsonObjectFunc()
1757 n = (u32)sqlite3_value_bytes(argv[i]); in jsonObjectFunc()
1782 u32 i; in jsonRemoveFunc()
1787 for(i=1; i<(u32)argc; i++){ in jsonRemoveFunc()
1815 u32 i; in jsonReplaceFunc()
1824 for(i=1; i<(u32)argc; i+=2){ in jsonReplaceFunc()
1867 u32 i; in jsonSetFunc()
1878 for(i=1; i<(u32)argc; i+=2){ in jsonSetFunc()
2070 u32 n; in jsonObjectStep()
2082 n = (u32)sqlite3_value_bytes(argv[0]); in jsonObjectStep()
2125 u32 iRowid; /* The rowid */
2126 u32 iBegin; /* The first node of the scan */
2127 u32 i; /* Index in sParse.aNode[] of current row */
2128 u32 iEnd; /* EOF when i equals or exceeds this value */
2243 u32 iUp = p->sParse.aUp[p->i]; in jsonEachNext()
2310 u32 i /* Path to this element */ in jsonEachComputePath()
2313 u32 iUp; in jsonEachComputePath()
2347 u32 iKey; in jsonEachColumn()