HomeSort by relevance Sort by last modified time
    Searched defs:toc (Results 1 - 25 of 47) sorted by null

1 2

  /external/icu/icu4c/source/common/
udatamem.h 28 const commonDataFuncs *vFuncs; /* Function Pointers for accessing TOC */
32 const void *toc; /* For common memory, table of contents for */ member in struct:UDataMemory
ucmndata.cpp 121 const UDataOffsetTOCEntry *toc, int32_t count) {
140 if(0==strcmpAfterPrefix(s, names+toc[0].nameOffset, &startPrefixLength)) {
145 if(0==strcmpAfterPrefix(s, names+toc[limit].nameOffset, &limitPrefixLength)) {
151 int32_t cmp=strcmpAfterPrefix(s, names+toc[i].nameOffset, &prefixLength);
166 pointerTOCPrefixBinarySearch(const char *s, const PointerTOCEntry *toc, int32_t count) {
185 if(0==strcmpAfterPrefix(s, toc[0].entryName, &startPrefixLength)) {
190 if(0==strcmpAfterPrefix(s, toc[limit].entryName, &limitPrefixLength)) {
196 int32_t cmp=strcmpAfterPrefix(s, toc[i].entryName, &prefixLength);
214 const UDataOffsetTOC *toc = (UDataOffsetTOC *)pData->toc; local
227 const UDataOffsetTOC *toc = (UDataOffsetTOC *)pData->toc; local
269 const PointerTOC *toc = (PointerTOC *)pData->toc; local
279 const PointerTOC *toc = (PointerTOC *)pData->toc; local
    [all...]
  /external/libopus/tests/
opus_decode_fuzzer.c 47 static void ParseToc(const uint8_t *toc, TocInfo *const info) {
49 const int bandwidth = opus_packet_get_bandwidth(toc);
52 info->channels = opus_packet_get_nb_channels(toc);
59 * bytes 8+ : Opus packet, including ToC
65 TocInfo toc; local
68 /* Not enough data to setup the decoder (+1 for the ToC) */
73 /* Create decoder based on info from the first ToC available */
74 ParseToc(&data[SETUP_BYTE_COUNT], &toc);
76 dec = opus_decoder_create(toc.fs, toc.channels, &err)
    [all...]
test_opus_api.c 690 #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,frames,size,&payload_offset)
    [all...]
  /external/libffi/src/powerpc/
ffitarget.h 177 void * toc; /* TOC */ member in struct:ffi_aix_trampoline_struct
ffi_darwin.c 84 | TOC=R2 (AIX) Reserved (Darwin) 4/8 | |
957 void *toc; member in struct:aix_fd_struct
971 | TOC=R2 (AIX) Reserved (Darwin) 4/8 | |
990 | TOC=R2 (AIX) Reserved (Darwin) 4/8 | |
1063 tramp_aix->toc = fd->toc;
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/powerpc/
ffitarget.h 177 void * toc; /* TOC */ member in struct:ffi_aix_trampoline_struct
ffi_darwin.c 84 | TOC=R2 (AIX) Reserved (Darwin) 4/8 | |
957 void *toc; member in struct:aix_fd_struct
971 | TOC=R2 (AIX) Reserved (Darwin) 4/8 | |
990 | TOC=R2 (AIX) Reserved (Darwin) 4/8 | |
1063 tramp_aix->toc = fd->toc;
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi_osx/include/
ppc-ffitarget.h 98 void* toc; /* TOC */ member in struct:ffi_aix_trampoline_struct
  /external/python/cpython3/Modules/_ctypes/libffi/src/powerpc/
ffitarget.h 177 void * toc; /* TOC */ member in struct:ffi_aix_trampoline_struct
ffi_darwin.c 84 | TOC=R2 (AIX) Reserved (Darwin) 4/8 | |
957 void *toc; member in struct:aix_fd_struct
971 | TOC=R2 (AIX) Reserved (Darwin) 4/8 | |
990 | TOC=R2 (AIX) Reserved (Darwin) 4/8 | |
1063 tramp_aix->toc = fd->toc;
    [all...]
  /external/python/cpython3/Modules/_ctypes/libffi_osx/include/
ppc-ffitarget.h 98 void* toc; /* TOC */ member in struct:ffi_aix_trampoline_struct
  /system/chre/apps/ash_world/
ash_world.cc 120 uint64_t tic = 0, toc = 0; local
141 toc = chreGetTime();
143 sensor, success ? "success" : "failure", (toc - tic) / 1000);
148 toc = chreGetTime();
150 sensor, success ? "success" : "fail", (toc - tic) / 1000);
167 toc = chreGetTime();
169 sensor, success ? "success" : "failure", (toc - tic) / 1000);
  /external/libopus/src/
opus.c 202 unsigned char ch, toc; local
216 toc = *data++;
219 switch (toc&0x3)
344 *out_toc = toc;
opus_multistream_decoder.c 160 unsigned char toc; local
170 count = opus_packet_parse_impl(data, len, s!=nb_streams-1, &toc, NULL,
opus_private.h 39 unsigned char toc; member in struct:OpusRepacketizer
repacketizer.c 65 /* Set of check ToC */
69 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
281 unsigned char toc; local
311 unsigned char toc; local
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
AAMRAssembler.cpp 158 ALOGV("Unable to parse TOC.");
163 uint8_t toc = buffer->data()[offset++]; local
165 unsigned FT = (toc >> 3) & 0x0f;
166 if ((toc & 3) != 0
172 ALOGV("Illegal TOC entry.");
177 totalSize += getFrameSize(mIsWide, (toc >> 3) & 0x0f);
179 tableOfContents.push(toc);
181 if (0 == (toc & 0x80)) {
191 uint8_t toc = tableOfContents[i]; local
193 size_t frameSize = getFrameSize(mIsWide, (toc >> 3) & 0x0f)
    [all...]
ARTPWriter.cpp 763 uint8_t toc = mediaData[srcOffset]; local
765 unsigned FT = (toc >> 3) & 0x0f;
768 tableOfContents.push(toc);
800 uint8_t toc = tableOfContents[i]; local
803 toc |= 0x80;
805 toc &= ~0x80;
808 data[dstOffset++] = toc;
813 uint8_t toc = tableOfContents[i]; local
814 unsigned FT = (toc >> 3) & 0x0f;
817 ++srcOffset; // skip toc
    [all...]
  /build/soong/cc/
builder.go 138 _ = pctx.SourcePathVariable("tocPath", "build/soong/scripts/toc.sh") var
140 toc = pctx.AndroidStaticRule("toc",
757 Rule: toc,
758 Description: "generate toc " + inputFile.Base(),
library.go 402 toc() android.OptionalPath
577 tocPath = pathtools.ReplaceExtension(tocPath, flags.Toolchain.ShlibSuffix()[1:]+".toc")
743 func (library *libraryDecorator) toc() android.OptionalPath { func
  /external/linux-kselftest/tools/testing/selftests/powerpc/pmu/ebb/
ebb.c 141 u64 toc; member in struct:opd
  /external/icu/icu4c/source/test/perf/dicttrieperf/
dicttrieperf.cpp 117 static int32_t simpleBinarySearch(const char *s, const char *names, const TOCEntry *toc, int32_t count) {
127 int32_t cmp=strcmp(s, names+toc[number].nameOffset);
144 toc=new TOCEntry[count];
146 toc[i].nameOffset=itemNames.length();
147 toc[i].dataOffset=i; // arbitrary value, see toc comment below
155 printf("size of TOC: %6ld\n", (long)(count*8));
159 delete[] toc;
167 if(simpleBinarySearch(name, itemNameChars, toc, count)<0) {
176 // toc imitates a .dat file's array of UDataOffsetTOCEntr
180 TOCEntry *toc; member in class:BinarySearchPackageLookup
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi_osx/powerpc/
ppc-ffi_darwin.c 59 void* toc; member in struct:aix_fd_struct
640 | saved TOC pointer 4 |
665 | saved TOC pointer 4 |
777 tramp_aix->toc = fd->toc;
    [all...]
  /external/python/cpython3/Modules/_ctypes/libffi_osx/powerpc/
ppc-ffi_darwin.c 59 void* toc; member in struct:aix_fd_struct
640 | saved TOC pointer 4 |
665 | saved TOC pointer 4 |
777 tramp_aix->toc = fd->toc;
    [all...]

Completed in 682 milliseconds

1 2