Searched defs:pRoot (Results 1 - 5 of 5) sorted by relevance

/external/chromium/third_party/icu/source/common/
H A Duresdata.h36 #define RES_GET_POINTER(pRoot, res) ((pRoot)+RES_GET_OFFSET(res))
171 Resource *pRoot; member in struct:__anon1414
H A Duresdata.c38 /* get a const char* pointer to the key with the keyOffset byte offset from pRoot */
39 #define RES_GET_KEY(pRoot, keyOffset) ((const char *)(pRoot)+(keyOffset))
52 _res_getArrayItem(Resource *pRoot, Resource res, int32_t indexR) { argument
53 const int32_t *p=(const int32_t *)RES_GET_POINTER(pRoot, res);
64 * Important: the key offsets are 16-bit byte offsets from pRoot,
75 _res_getTableKey(const Resource *pRoot, const Resource res, int32_t indexS) { argument
76 const uint16_t *p=(const uint16_t *)RES_GET_POINTER(pRoot, res);
78 return RES_GET_KEY(pRoot, p[indexS+1]);
85 _res_getTable32Key(const Resource *pRoot, cons argument
96 _res_getTableItem(const Resource *pRoot, const Resource res, int32_t indexR) argument
107 _res_getTable32Item(const Resource *pRoot, const Resource res, int32_t indexR) argument
119 _res_findTableItem(const Resource *pRoot, const Resource res, const char *key, int32_t *idx, const char **realKey) argument
159 _res_findTable32Item(const Resource *pRoot, const Resource res, const char *key, int32_t *idx, const char **realKey) argument
[all...]
/external/icu4c/common/
H A Duresdata.h66 #define RES_GET_POINTER(pRoot, res) ((pRoot)+RES_GET_OFFSET(res))
309 const int32_t *pRoot; member in struct:__anon2428
/external/chromium/third_party/icu/source/tools/genrb/
H A Dderb.c473 int32_t *p=(int32_t *)RES_GET_POINTER(pResData->pRoot, res);
487 derb_getTableKey(const Resource *pRoot, const Resource res, uint16_t indexS) { argument
488 uint16_t *p=(uint16_t *)RES_GET_POINTER(pRoot, res);
490 return ((const char *)(pRoot)+(p[indexS+1])); /*RES_GET_KEY(pRoot, p[indexS+1]);*/
497 derb_getArrayItem(Resource *pRoot, Resource res, int32_t indexR) { argument
498 int32_t *p=(int32_t *)RES_GET_POINTER(pRoot, res);
507 derb_getTableItem(const Resource *pRoot, const Resource res, uint16_t indexR) { argument
508 uint16_t *p=(uint16_t *)RES_GET_POINTER(pRoot, res);
727 r = derb_getTableItem(resource->fResData.pRoot, resourc
[all...]
/external/sqlite/dist/
H A Dsqlite3.c13266 ** on. *pRoot is the list that i is a member of.
13268 static void memsys3UnlinkFromList(u32 i, u32 *pRoot){ argument
13273 *pRoot = next;
13306 ** at *pRoot.
13308 static void memsys3LinkIntoList(u32 i, u32 *pRoot){ argument
13310 mem3.aPool[i].u.list.next = *pRoot;
13312 if( *pRoot ){
13313 mem3.aPool[*pRoot].u.list.prev = i;
13315 *pRoot = i;
13421 ** *pRoot i
13436 memsys3Merge(u32 *pRoot) argument
41838 MemPage *pRoot; local
44073 balance_deeper(MemPage *pRoot, MemPage **ppChild) argument
44529 MemPage *pRoot; local
60952 sqlite3ExprAttachSubtrees( sqlite3 *db, Expr *pRoot, Expr *pLeft, Expr *pRight ) argument
84624 Parse *pRoot = sqlite3ParseToplevel(pParse); local
108540 RtreeNode *pRoot = 0; local
109909 RtreeNode *pRoot; local
[all...]

Completed in 129 milliseconds