Searched defs:header (Results 1 - 25 of 1166) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/zlib/src/contrib/minizip/
H A Dcrypt.h62 * Initialize the encryption keys and the random header according to
91 unsigned char* buf, /* where to write header */
97 int n; /* index in random header */
100 unsigned char header[RAND_HEAD_LEN-2]; /* random header */ local
101 static unsigned calls = 0; /* ensure different random header each time */
118 header[n] = (unsigned char)zencode(pkeys, pcrc_32_tab, c, t);
120 /* Encrypt random header (last two bytes is high word of crc) */
124 buf[n] = (unsigned char)zencode(pkeys, pcrc_32_tab, header[n], t);
H A Dmztools.c44 char header[30]; local
49 while ( fread(header, 1, 30, fpZip) == 30 ) {
53 if (READ_32(header) == 0x04034b50) {
54 unsigned int version = READ_16(header + 4);
55 unsigned int gpflag = READ_16(header + 6);
56 unsigned int method = READ_16(header + 8);
57 unsigned int filetime = READ_16(header + 10);
58 unsigned int filedate = READ_16(header + 12);
59 unsigned int crc = READ_32(header + 14); /* crc */
60 unsigned int cpsize = READ_32(header
149 char header[46]; local
224 char header[22]; local
[all...]
H A Dzip.c140 ZPOS64_T pos_local_header; /* offset of the local header of the file
142 char* central_header; /* central header data for the current file */
144 uLong size_centralheader; /* size of the central header for cur file */
731 // read the comment from the standard central header.
960 /* write the local header */
1034 // Remember position of Zip64 extended info for the local file header. (needed when we update size after done with file)
1646 // Add ZIP64 extra info field for relative offset to local file header of current file
1957 short header; local
1970 header = *(short*)p;
1973 if( header
[all...]
/external/zlib/src/contrib/untgz/
H A Duntgz.c60 #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
[all...]
/external/zlib/src/
H A Ddeflate.c593 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);
1569 * to pending_buf_size, and each stored block has a 5 byte header:
H A Dtrees.c156 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, "cons
[all...]
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp27 The manual and changelog are in the header file "lodepng.h"
55 #define LODEPNG_COMPILE_ALLOCATORS in the header, to disable the ones here and
2078 /*read information from zlib header*/
3950 /*read the information from the header and store it in the LodePNGInfo. return value is error*/
3961 CERROR_RETURN_ERROR(state->error, 27); /*error: the data length is smaller than the length of a PNG header*/
3978 /*read the values given in the header*/
4581 state->error = lodepng_inspect(w, h, state, in, insize); /*reads header and resets other parameters in state->info_png*/
4585 chunk = &in[33]; /*first byte of the first chunk after the header*/
4906 ucvector header; local
4907 ucvector_init(&header);
[all...]
/external/webrtc/src/modules/interface/
H A Dmodule_common_types.h123 RTPHeader header; member in struct:webrtc::WebRtcRTPHeader
148 RTPFragmentationHeader& operator=(const RTPFragmentationHeader& header) argument
150 if(this == &header)
155 if(header.fragmentationVectorSize != fragmentationVectorSize)
169 if(header.fragmentationVectorSize > 0)
172 if(header.fragmentationOffset)
174 fragmentationOffset = new WebRtc_UWord32[header.fragmentationVectorSize];
176 if(header.fragmentationLength)
178 fragmentationLength = new WebRtc_UWord32[header.fragmentationVectorSize];
180 if(header
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos_unix.c306 struct __user_cap_header_struct header; local
316 header.version = _LINUX_CAPABILITY_VERSION;
317 header.pid = 0;
321 capset(&header, &cap);
/external/wpa_supplicant_8/src/utils/
H A Dos_unix.c306 struct __user_cap_header_struct header; local
316 header.version = _LINUX_CAPABILITY_VERSION;
317 header.pid = 0;
321 capset(&header, &cap);
/external/wpa_supplicant_8/wpa_supplicant/
H A Dibss_rsn.c879 const struct ieee80211_mgmt *header; local
883 header = (const struct ieee80211_mgmt *) auth_frame;
884 auth_length = IEEE80211_HDRLEN + sizeof(header->u.auth);
889 if (le_to_host16(header->u.auth.auth_alg) != WLAN_AUTH_OPEN ||
890 le_to_host16(header->u.auth.status_code) != WLAN_STATUS_SUCCESS)
893 peer = ibss_rsn_get_peer(ibss_rsn, header->sa);
895 switch (le_to_host16(header->u.auth.auth_transaction)) {
897 ibss_rsn_handle_auth_1_of_2(ibss_rsn, peer, header->sa);
901 MACSTR, MAC2STR(header->sa));
904 "unknown STA " MACSTR, MAC2STR(header
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos_unix.c306 struct __user_cap_header_struct header; local
316 header.version = _LINUX_CAPABILITY_VERSION;
317 header.pid = 0;
321 capset(&header, &cap);
/external/xmlwriter/src/org/jheer/
H A DXMLWriter.java115 * formatting methods. This method writes an XML header into
125 * formatting methods. This method writes an XML header into
126 * the top of the output stream, plus additional header text
128 * @param header header text to insert into the document
131 public void begin(String header, int bias) throws IOException { argument
133 m_out.write(header);
/external/webp/src/demux/
H A Ddemux.c376 // General chunk storage, starting with the header at 'start_offset', allowing
378 // header and the unpadded payload size.
538 // Store only the chunk header and unpadded size as only the payload
930 const uint8_t* const header = mem_buf + c->data_.offset_; local
931 if (!memcmp(header, fourcc, TAG_SIZE)) ++count;
942 const uint8_t* const header = mem_buf + c->data_.offset_; local
943 if (!memcmp(header, fourcc, TAG_SIZE)) ++count;
/external/webp/src/enc/
H A Dalpha.c117 uint8_t header; local
125 assert(sizeof(header) == ALPHA_HEADER_LEN);
131 header = method | (filter << 2);
132 if (reduce_levels) header |= ALPHA_PREPROCESSED_LEVELS << 4;
135 VP8BitWriterAppend(&result->bw, &header, ALPHA_HEADER_LEN);
/external/valgrind/main/coregrind/
H A Dlauncher-linux.c128 char header[4096]; local
145 n_bytes = read(fd, header, sizeof(header));
154 if (header[0] == '#' && header[1] == '!') {
156 char *interp = (char *)header + 2;
161 if (' ' != header[i] && '\t' != header[i]) break;
166 interp = &header[i];
169 if (isspace(header[
[all...]
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadpdb.c74 The original/preferred image base is set in the PE header,
118 unsigned short e_cparhdr; /* 08: Size of header in paragraphs */
132 unsigned long e_lfanew; /* 3c: Offset to extended header */
958 struct PDB_JG_HEADER* header; member in struct:pdb_reader::__anon32515::__anon32516
962 struct PDB_DS_HEADER* header; member in struct:pdb_reader::__anon32515::__anon32517
984 blocksize = pdb->u.ds.header->block_size;
1005 blocksize = pdb->u.jg.header->blocksize;
1046 + reader->u.ds.header->block_size - 1)
1048 reader->u.ds.header->block_size;
1061 unsigned blocksize = pdb->u.jg.header
1671 DWORD header; /* 0x000000f2 */ member in struct:codeview_linetab2_block
[all...]
/external/tinycompress/
H A Dcplay.c100 int parse_mp3_header(struct mp3_header *header, unsigned int *num_channels, argument
106 if ((header->sync & MP3_SYNC) != MP3_SYNC) {
110 ver_idx = (header->sync >> 11) & 0x03;
112 layer = 4 - ((header->sync >> 9) & 0x03);
113 bit_rate_idx = ((header->format1 >> 4) & 0x0f);
114 sample_rate_idx = ((header->format1 >> 2) & 0x03);
115 channel_idx = ((header->format2 >> 6) & 0x03);
118 fprintf(stderr, "Error: Can't find valid header\n");
205 struct mp3_header header; local
219 fread(&header, sizeo
[all...]
/external/tremolo/Tremolo/
H A Dogg.h164 ogg_reference *header; member in struct:__anon31583
/external/tinyalsa/
H A Dtinycap.c74 struct wav_header header; local
133 header.riff_id = ID_RIFF;
134 header.riff_sz = 0;
135 header.riff_fmt = ID_WAVE;
136 header.fmt_id = ID_FMT;
137 header.fmt_sz = 16;
138 header.audio_format = FORMAT_PCM;
139 header.num_channels = channels;
140 header.sample_rate = rate;
157 header
[all...]
/external/srtp/include/
H A Drtp_priv.h4 * private, internal header file for RTP
55 srtp_hdr_t header; member in struct:__anon31211
/external/strace/linux/
H A Dioctlsort.c14 const char* header; member in struct:ioctlent
47 ioctls[i].header, ioctls[i].name, ioctls[i].code);
/external/svox/pico/lib/
H A Dpicoos.c262 picoos_objsize_t fullCellHdrSize; /* aligned size of full cell header, including free-links */
263 picoos_objsize_t usedCellHdrSize; /* aligned size of header part without free-links */
388 /* get aligned full header size */
391 /* get aligned size of header without free-list fields; the result may be compiler-dependent;
403 cell header (free-list links) when in free-list */
1430 /* Tries to read wav header at beginning of file 'f';
1432 nr of samples in file 'nrSamples', header size 'hdrSize',
1434 wav header and format was found. */
1545 picoos_emRaiseWarning(g->em,PICO_EXC_UNEXPECTED_FILE_TYPE,(picoos_char *)"non-conforming header",NULL);
1768 (picoos_char *) "non-conforming header", NUL
1878 picoos_clearHeader(picoos_FileHeader header) argument
1890 picoos_setHeaderField(picoos_FileHeader header, picoos_uint8 index, picoos_char * key, picoos_char * value, picoos_compare_op_t op) argument
1910 picoos_getHeaderField(picoos_FileHeader header, picoos_uint8 index, picoos_field_string_t key, picoos_field_string_t value, picoos_compare_op_t * op) argument
2009 picoos_hdrParseHeader(picoos_FileHeader header, picoos_header_string_t str) argument
[all...]
H A Dpicorsrc.c70 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
295 readHeader(picorsrc_ResourceManager this, picoos_FileHeader header, picoos_uint32 * headerlen, picoos_File file) argument
[all...]

Completed in 2119 milliseconds

1234567891011>>