| /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/ |
| fx_zlib_trees.c | 156 int header)); 330 FILE *header = fopen("trees.h", "w"); local 333 Assert (header != NULL, "Can't open trees.h"); 334 fprintf(header, 335 "/* header created automatically with -DGEN_TREES_H */\n\n"); 337 fprintf(header, "local const ct_data static_ltree[L_CODES+2] = {\n"); 339 fprintf(header, "{{%3u},{%3u}}%s", static_ltree[i].Code, 343 fprintf(header, "local const ct_data static_dtree[D_CODES] = {\n"); 345 fprintf(header, "{{%2u},{%2u}}%s", static_dtree[i].Code, 349 fprintf(header, "const uch ZLIB_INTERNAL _dist_code[DIST_CODE_LEN] = {\n") [all...] |
| /external/skia/src/gpu/gl/builders/ |
| GrGLProgramBuilder.h | 284 const GrProgramDesc::KeyHeader& header() const { return fArgs.fDesc->header(); } function in class:GrGLProgramBuilder
|
| /external/svox/pico/lib/ |
| picorsrc.c | 70 picoos_uint8 * start; /* start of content (after header) */ 296 picoos_FileHeader header, picoos_uint32 * headerlen, picoos_File file) 304 /* read PICO header */ 309 return picoos_emRaiseException(this->common->em,status,NULL,(picoos_char *)"problem reading file header"); 311 /* read header length (excluding length itself) */ 313 PICODBG_DEBUG(("got header size %d",hdrlen1)); 323 PICODBG_DEBUG(("got header <%s>",this->tmpHeader)); 331 status = picoos_hdrParseHeader(header, this->tmpHeader); 533 /* load resource file. the type of resource file etc. are in the header, 541 picoos_file_header_t header; local [all...] |
| /external/vboot_reference/cgpt/ |
| cgpt_common.c | 166 Error("Cannot read primary GPT header\n"); 172 Error("Cannot read secondary GPT header\n"); 187 Warning("Primary GPT header is invalid\n"); 201 Warning("Secondary GPT header is invalid\n"); 213 Error("Cannot write primary header: %s\n", strerror(errno)); 222 Error("Cannot write secondary header: %s\n", strerror(errno)); 698 GptHeader *header = GetGptHeader(&drive->gpt); local 699 if (!header) 701 return header->number_of_entries; 706 GptHeader *header = GetGptHeader(gpt) local [all...] |
| /external/vboot_reference/tests/ |
| cgptlib_test.c | 25 * 1 1 primary partition header 32 * 466 1 secondary partition header 69 * header CRC32 value to 0, and calculate header CRC32 value. Both primary and 74 GptHeader *header, *header2; local 77 header = (GptHeader *)gpt->primary_header; 82 header->entries_crc32 = 84 header->number_of_entries * header->size_of_entry); 85 header->header_crc32 = 0 147 GptHeader *header, *header2; local [all...] |
| /external/zlib/src/contrib/untgz/ |
| untgz.c | 60 #define GNUTYPE_VOLHDR 'V' /* tape/volume header */ 63 /* tar header */ 92 struct tar_header header; member in union:tar_buffer 418 * If we have to get a tar header 427 if (len == 0 || buffer.header.name[0] == 0) 430 tarmode = getoct(buffer.header.mode,8); 431 tartime = (time_t)getoct(buffer.header.mtime,12); 434 buffer.header.name[0] = 0; 440 strncpy(fname,buffer.header.name,SHORTNAMESIZE); 449 if (strncmp(fname,buffer.header.name,SHORTNAMESIZE-1) != 0 [all...] |
| /external/zlib/src/ |
| deflate.c | 593 if (s->gzhead != Z_NULL) { /* user-supplied gzip header */ 689 /* Write the header */ 738 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8; local 749 header |= (level_flags << 6); 750 if (s->strstart != 0) header |= PRESET_DICT; 751 header += 31 - (header % 31); 754 putShortMSB(s, header); [all...] |
| trees.c | 156 int header)); 330 FILE *header = fopen("trees.h", "w"); local 333 Assert (header != NULL, "Can't open trees.h"); 334 fprintf(header, 335 "/* header created automatically with -DGEN_TREES_H */\n\n"); 337 fprintf(header, "local const ct_data static_ltree[L_CODES+2] = {\n"); 339 fprintf(header, "{{%3u},{%3u}}%s", static_ltree[i].Code, 343 fprintf(header, "local const ct_data static_dtree[D_CODES] = {\n"); 345 fprintf(header, "{{%2u},{%2u}}%s", static_dtree[i].Code, 349 fprintf(header, "const uch ZLIB_INTERNAL _dist_code[DIST_CODE_LEN] = {\n") [all...] |
| /frameworks/av/media/libstagefright/ |
| FLACExtractor.cpp | 325 mWriteHeader = frame->header; 668 // verify that block header keeps the promises made by STREAMINFO 849 // no need to read rest of the header, as a premature EOF will be caught later 850 uint8_t header[4+4]; local 851 if (source->readAt(0, header, sizeof(header)) != sizeof(header) 852 || memcmp("fLaC\0\0\0\042", header, 4+4))
|
| MP3Extractor.cpp | 56 // Skip an optional ID3 header if syncing at the very beginning 72 // Skip the ID3v2 header. 138 uint32_t header = U32_AT(tmp); local 140 if (match_header != 0 && (header & kMask) != (match_header & kMask)) { 150 header, &frame_size, 158 ALOGV("found possible 1st frame at %lld (header = 0x%08x)", (long long)pos, header); 175 ALOGV("subsequent header is %08x", test_header); 177 if ((test_header & kMask) != (header & kMask)) { 198 *out_header = header; 257 uint32_t header; local 537 uint32_t header = U32_AT((const uint8_t *)buffer->data()); local 667 uint32_t header; local [all...] |
| /frameworks/base/core/tests/coretests/src/android/util/ |
| ListScenario.java | 188 * Include a header text view above the list. 225 * Set the number of header views to appear within the list 323 TextView header = mHeadersFocusable ? local 326 header.setText("Header: " + i); 327 mListView.addHeaderView(header); 331 TextView header = new TextView(this); local 332 header.setText("Footer: " + i); 333 mListView.addFooterView(header); 510 * @return The contents of the header above the list [all...] |
| /frameworks/base/libs/androidfw/ |
| BackupHelpers.cpp | 51 * i.e. a 16-byte metadata header followed by the raw file data. If the 91 SnapshotHeader header; local 93 amt = read(fd, &header, sizeof(header)); 94 if (amt != sizeof(header)) { 99 if (header.magic0 != MAGIC0 || header.magic1 != MAGIC1) { 100 ALOGW("read_snapshot_file header.magic0=0x%08x magic1=0x%08x", header.magic0, header.magic1) 162 SnapshotHeader header = { MAGIC0, fileCount, MAGIC1, bytesWritten }; local [all...] |
| /frameworks/compile/mclinker/lib/LD/ |
| ELFObjectWriter.cpp | 164 // Write out ELF header 165 // Write out section header table 172 // Write out ELF header 173 // Write out section header table 210 // ELF header must start from 0x0 212 ElfXX_Ehdr* header = reinterpret_cast<ElfXX_Ehdr*>(region.begin()); local 214 memcpy(header->e_ident, llvm::ELF::ElfMagic, llvm::ELF::EI_MAG3 + 1); 216 header->e_ident[llvm::ELF::EI_CLASS] = 218 header->e_ident[llvm::ELF::EI_DATA] = 221 header->e_ident[llvm::ELF::EI_VERSION] = target().getInfo().ELFVersion() [all...] |
| /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/cdma/sms/ |
| CdmaSmsTest.java | 379 userData.payloadStr = "User Data Header (UDH) feedback test"; 456 userData.payloadStr = "User Data Header (UDH) feedback test"; 965 SmsHeader header = getConcatUserDataHeader(i + 1, 3); local 967 encodeDecodeAssertEquals(fragments.get(i), header, -1); local 983 SmsHeader header = getConcatUserDataHeader(i + 1, 3); local 985 encodeDecodeAssertEquals(fragments.get(i), header, -1); local [all...] |
| /hardware/intel/img/psb_video/src/ |
| psb_overlay.c | 950 unsigned char *data, *chroma, *buffer, *header; local 976 header = buffer; [all...] |
| /libcore/luni/src/main/java/java/net/ |
| URLConnection.java | 180 * header field "Content-Type". If none is found it will guess the content 208 * header field "Content-Type". If none is found it will guess the content 239 * Returns the content encoding type specified by the response header field 242 * @return the value of the response header field {@code content-encoding}. 310 * Returns the content length in bytes specified by the response header field 319 * Returns the MIME-type of the content specified by the response header field 322 * @return the value of the response header field {@code content-type}. 394 * @return the value of the response header field {@code expires}. 416 * Returns the header value at the field position {@code pos} or {@code null} 417 * if the header has fewer than {@code pos} fields. The bas 749 String header = new String(bytes, start, length - start, encoding); local [all...] |
| /ndk/sources/host-tools/make-3.81/ |
| alloca.c | 140 /* An "alloca header" is used to: 144 It is very important that sizeof(header) agree with malloc 153 char align[ALIGN_SIZE]; /* To force sizeof(header). */ 159 } header; typedef in typeref:union:hdr 161 static header *last_alloca_header = NULL; /* -> last alloca header. */ 185 register header *hp; /* Traverses linked list. */ 195 register header *np = hp->h.next; 199 hp = np; /* -> next header. */ 214 /* Allocate combined header + user data storage. * [all...] |
| /packages/apps/Browser/src/com/android/browser/ |
| BrowserSnapshotPage.java | 161 // Create the header, re-use BookmarkItem (has the layout we want) 162 BookmarkItem header = new BookmarkItem(getActivity()); local 163 header.setEnableScrolling(true); 165 populateBookmarkItem(mAdapter.getItem(info.position), header); local 166 menu.setHeaderView(header);
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
| argp.h | 103 useful as a group header (it will be the first thing printed in its 111 zero if it's the first one, unless its a group header (NAME and KEY both 280 #define ARGP_KEY_HELP_HEADER 0x2000003 /* Option header string. */ 299 /* If non-zero, an optional header to be printed in help output before the 302 printing a header string, use a value of "". */ 303 __const char *header; 308 a particular group level. If both this field and HEADER are zero, then 300 __const char *header; member in struct:argp_child
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm/ |
| bootparam.h | 36 __u32 header; member in struct:setup_header 104 struct setup_header hdr; /* setup header */ /* 0x1f1 */
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
| firewire-cdev.h | 136 * @header: Stripped headers, if any 141 * returned in the @header field. The amount of header data per packet is as 144 * In version 1 of this ABI, header data consisted of the 1394 isochronous 145 * packet header, followed by quadlets from the packet payload if 148 * In version 2 of this ABI, header data consist of the 1394 isochronous 149 * packet header, followed by a timestamp quadlet if 155 * Format of 1394 iso packet header: 16 bits len, 2 bits tag, 6 bits channel, 165 __u32 header[0]; member in struct:fw_cdev_event_iso_interrupt 211 * the data[] or header[] may make the size of the full event larger tha 479 __u32 header[0]; member in struct:fw_cdev_iso_packet [all...] |
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
| argp.h | 103 useful as a group header (it will be the first thing printed in its 111 zero if it's the first one, unless its a group header (NAME and KEY both 280 #define ARGP_KEY_HELP_HEADER 0x2000003 /* Option header string. */ 299 /* If non-zero, an optional header to be printed in help output before the 302 printing a header string, use a value of "". */ 303 __const char *header; 308 a particular group level. If both this field and HEADER are zero, then 300 __const char *header; member in struct:argp_child
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/asm/ |
| bootparam.h | 37 __u32 header; member in struct:setup_header 114 struct setup_header hdr; /* setup header */ /* 0x1f1 */
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/asm/ |
| bootparam.h | 37 __u32 header; member in struct:setup_header 114 struct setup_header hdr; /* setup header */ /* 0x1f1 */
|
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
| rpcproxy.h | 16 #error Incorrect <rpcproxy.h> version. Use the header that matches with the MIDL compiler. 73 #define CINTERFACE_PROXY_VTABLE(n) struct { CInterfaceProxyHeader header; void *Vtbl[n ]; } 76 CInterfaceProxyHeader header; member in struct:tagCInterfaceProxyVtbl 90 CInterfaceStubHeader header; member in struct:tagCInterfaceStubVtbl 137 #define IID_GENERIC_CHECK_IID(name,pIID,index) memcmp(pIID,name##_ProxyVtblList[index ]->header.piid,16) 196 #define GET_DLL_CLSID (aProxyFileList[0]->pStubVtblList[0]!=0 ? aProxyFileList[0]->pStubVtblList[0]->header.piid : 0)
|