• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/ICU-531.30/icuSources/common/

Lines Matching refs:toc

119                             const UDataOffsetTOCEntry *toc, int32_t count) {
138 if(0==strcmpAfterPrefix(s, names+toc[0].nameOffset, &startPrefixLength)) {
143 if(0==strcmpAfterPrefix(s, names+toc[limit].nameOffset, &limitPrefixLength)) {
149 int32_t cmp=strcmpAfterPrefix(s, names+toc[i].nameOffset, &prefixLength);
164 pointerTOCPrefixBinarySearch(const char *s, const PointerTOCEntry *toc, int32_t count) {
183 if(0==strcmpAfterPrefix(s, toc[0].entryName, &startPrefixLength)) {
188 if(0==strcmpAfterPrefix(s, toc[limit].entryName, &limitPrefixLength)) {
194 int32_t cmp=strcmpAfterPrefix(s, toc[i].entryName, &prefixLength);
210 const UDataOffsetTOC *toc = (UDataOffsetTOC *)pData->toc;
211 if (toc != NULL) {
212 retVal = toc->count;
222 const UDataOffsetTOC *toc = (UDataOffsetTOC *)pData->toc;
223 if(toc!=NULL) {
224 const char *base=(const char *)toc;
225 int32_t number, count=(int32_t)toc->count;
231 fprintf(stderr, "\tx%d: %s\n", number, &base[toc->entry[number].nameOffset]);
234 number=offsetTOCPrefixBinarySearch(tocEntryName, base, toc->entry, count);
237 const UDataOffsetTOCEntry *entry=toc->entry+number;
264 const PointerTOC *toc = (PointerTOC *)pData->toc;
265 return (uint32_t)((toc != NULL) ? (toc->count) : 0);
273 if(pData->toc!=NULL) {
274 const PointerTOC *toc = (PointerTOC *)pData->toc;
275 int32_t number, count=(int32_t)toc->count;
280 fprintf(stderr, "\tx%d: %s\n", number, toc->entry[number].entryName);
283 number=pointerTOCPrefixBinarySearch(name, toc->entry, count);
287 fprintf(stderr, "%s: Found.\n", toc->entry[number].entryName);
290 return UDataMemory_normalizeDataPointer(toc->entry[number].pHeader);
338 udm->toc=(const char *)udm->pHeader+udata_getHeaderSize(udm->pHeader);
348 udm->toc=(const char *)udm->pHeader+udata_getHeaderSize(udm->pHeader);