Lines Matching refs:pTrie

212                        const UTrie2 *pTrie,
214 if(pTrie->data32==NULL) {
216 usrc_writeArray(f, indexPrefix, pTrie->index, 16, pTrie->indexLength+pTrie->dataLength, "", postfix);
219 usrc_writeArray(f, indexPrefix, pTrie->index, 16, pTrie->indexLength, "", postfix);
220 usrc_writeArray(f, data32Prefix, pTrie->data32, 32, pTrie->dataLength, "", postfix);
227 const UTrie2 *pTrie,
233 if(pTrie->data32==NULL) {
242 (long)pTrie->indexLength);
264 (long)pTrie->indexLength, (long)pTrie->dataLength,
265 (short)pTrie->index2NullOffset, (short)pTrie->dataNullOffset,
266 (long)pTrie->initialValue, (long)pTrie->errorValue,
267 (long)pTrie->highStart, (long)pTrie->highValueIndex);
276 const UCPTrie *pTrie,
280 usrc_writeArray(f, indexPrefix, pTrie->index, 16, pTrie->indexLength, indent, postfix);
282 pTrie->valueWidth==UCPTRIE_VALUE_BITS_16 ? 16 :
283 pTrie->valueWidth==UCPTRIE_VALUE_BITS_32 ? 32 :
284 pTrie->valueWidth==UCPTRIE_VALUE_BITS_8 ? 8 : 0;
285 usrc_writeArray(f, dataPrefix, pTrie->data.ptr0, width, pTrie->dataLength, indent, postfix);
291 const UCPTrie *pTrie,
328 (long)pTrie->indexLength, (long)pTrie->dataLength,
329 (long)pTrie->highStart, pTrie->shifted12HighStart,
330 pTrie->type, pTrie->valueWidth,
331 pTrie->index3NullOffset, (long)pTrie->dataNullOffset,
332 (long)pTrie->nullValue);
339 usrc_writeUCPTrie(FILE *f, const char *name, const UCPTrie *pTrie, UTargetSyntax syntax) {
341 pTrie->valueWidth==UCPTRIE_VALUE_BITS_16 ? 16 :
342 pTrie->valueWidth==UCPTRIE_VALUE_BITS_32 ? 32 :
343 pTrie->valueWidth==UCPTRIE_VALUE_BITS_8 ? 8 : 0;
360 usrc_writeUCPTrieArrays(f, line, line2, pTrie, line3, syntax);
378 usrc_writeUCPTrieStruct(f, line, pTrie, line2, line3, line4, syntax);