Searched defs:toc (Results 1 - 17 of 17) sorted by relevance

/external/icu/icu4c/source/common/
H A Dudatamem.h30 const void *toc; /* For common memory, table of contents for */ member in struct:UDataMemory
H A Ducmndata.c119 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) { argument
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; local
118 offsetTOCPrefixBinarySearch(const char *s, const char *names, const UDataOffsetTOCEntry *toc, int32_t count) argument
222 const UDataOffsetTOC *toc = (UDataOffsetTOC *)pData->toc; local
264 const PointerTOC *toc = (PointerTOC *)pData->toc; local
274 const PointerTOC *toc = (PointerTOC *)pData->toc; local
[all...]
H A Ducnv_io.cpp1133 uint32_t toc[offsetsCount]; local
1174 uprv_memset(toc, 0, sizeof(toc));
1175 toc[tocLengthIndex]=tocLength=ds->readUInt32(inSectionSizes[tocLengthIndex]);
1184 toc[i]=ds->readUInt32(inSectionSizes[i]);
1189 offsets[converterListIndex]=2*(1+tocLength); /* count two 16-bit units per toc entry */
1191 offsets[i]=offsets[i-1]+toc[i-1];
1195 topOffset=offsets[i-1]+toc[i-1];
1216 ds->swapInvChars(ds, inTable+offsets[stringTableIndex], 2*(int32_t)(toc[stringTableIndex]+toc[normalizedStringTableInde
[all...]
/external/libopus/src/
H A Dopus_private.h37 unsigned char toc; member in struct:OpusRepacketizer
H A Dopus.c177 unsigned char ch, toc; local
189 toc = *data++;
192 switch (toc&0x3)
317 *out_toc = toc;
H A Dopus_multistream_decoder.c160 unsigned char toc; local
170 count = opus_packet_parse_impl(data, len, s!=nb_streams-1, &toc, NULL,
H A Drepacketizer.c69 rp->toc = data[0];
71 } else if ((rp->toc&0xFC) != (data[0]&0xFC))
73 /*fprintf(stderr, "toc mismatch: 0x%x vs 0x%x\n", rp->toc, data[0]);*/
132 *ptr++ = rp->toc&0xFC;
141 *ptr++ = (rp->toc&0xFC) | 0x1;
147 *ptr++ = (rp->toc&0xFC) | 0x2;
181 *ptr++ = (rp->toc&0xFC) | 0x3;
187 *ptr++ = (rp->toc&0xFC) | 0x3;
278 unsigned char toc; local
308 unsigned char toc; local
[all...]
H A Dopus_decoder.c590 unsigned char toc; local
622 count = opus_packet_parse_impl(data, len, self_delimited, &toc, NULL,
H A Dopus_encoder.c251 unsigned char toc; local
260 toc = (bandwidth-OPUS_BANDWIDTH_NARROWBAND)<<5;
261 toc |= (period-2)<<3;
267 toc = 0x80;
268 toc |= tmp << 5;
269 toc |= period<<3;
272 toc = 0x60;
273 toc |= (bandwidth-OPUS_BANDWIDTH_SUPERWIDEBAND)<<4;
274 toc |= (period-2)<<3;
276 toc |
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.help_3.5.0.v20100524.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.help.base_3.5.2.v201011171123.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/libopus/tests/
H A Dtest_opus_api.c690 #define UNDEFINE_FOR_PARSE toc=-1; \
694 VG_UNDEF(&toc,sizeof(toc)); \
698 #define UNDEFINE_FOR_PARSE toc=-1; \
714 unsigned char toc; local
722 if(opus_packet_parse(packet,1,&toc,frames,0,&payload_offset)!=OPUS_BAD_ARG)test_failed();
729 ret=opus_packet_parse(packet,4,&toc,frames,size,&payload_offset);
745 ret=opus_packet_parse(packet,jj,&toc,frames,size,&payload_offset);
755 if((toc>>2)!=i)test_failed();
767 ret=opus_packet_parse(packet,1,&toc,frame
[all...]
H A Dtest_opus_encode.c397 unsigned char toc; local
426 if(opus_packet_parse(packet,len,&toc,frames,size,&payload_offset)<=0)test_failed();
/external/icu/icu4c/source/test/cintltst/
H A Dudatatst.c403 } toc[1];
1253 } toc[3]; member in struct:__anon5853
/external/icu/icu4c/source/test/perf/dicttrieperf/
H A Ddicttrieperf.cpp113 static int32_t simpleBinarySearch(const char *s, const char *names, const TOCEntry *toc, int32_t count) { argument
123 int32_t cmp=strcmp(s, names+toc[number].nameOffset);
140 toc=new TOCEntry[count];
142 toc[i].nameOffset=itemNames.length();
143 toc[i].dataOffset=i; // arbitrary value, see toc comment below
155 delete[] toc;
163 if(simpleBinarySearch(name, itemNameChars, toc, count)<0) {
172 // toc imitates a .dat file's array of UDataOffsetTOCEntry
176 TOCEntry *toc; member in class:BinarySearchPackageLookup
203 prefixBinarySearch(const char *s, const char *names, const TOCEntry *toc, int32_t count) argument
[all...]
/external/valgrind/coregrind/m_debuginfo/
H A Dreadpdb.c320 PDB_FILE toc; member in struct:PDB_JG_HEADER
959 struct PDB_JG_TOC* toc; member in struct:pdb_reader::__anon15981::__anon15982
964 struct PDB_DS_TOC* toc; member in struct:pdb_reader::__anon15981::__anon15983
1038 if (!reader->u.ds.toc || file_number >= reader->u.ds.toc->num_files)
1040 if (reader->u.ds.toc->file_size[file_number] == 0
1041 || reader->u.ds.toc->file_size[file_number] == 0xFFFFFFFF)
1045 = reader->u.ds.toc->file_size + reader->u.ds.toc->num_files;
1047 block_list += (reader->u.ds.toc
1064 struct PDB_JG_TOC* toc = pdb->u.jg.toc; local
[all...]

Completed in 373 milliseconds