HomeSort by relevance Sort by last modified time
    Searched refs:extra (Results 26 - 50 of 343) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/qemu/distrib/zlib-1.2.3/
inftrees.c 56 const unsigned short FAR *extra; /* extra bits table to use */ local
57 int end; /* use base and extra for symbol > end */
63 static const unsigned short lext[31] = { /* Length codes 257..285 extra */
70 static const unsigned short dext[32] = { /* Distance codes 0..29 extra */
184 base = extra = work; /* dummy value--not used */
190 extra = lext;
191 extra -= 257;
196 extra = dext;
224 this.op = (unsigned char)(extra[work[sym]])
    [all...]
inflate.h 24 OS, /* i: waiting for extra flags and operating system (gzip) */
25 EXLEN, /* i: waiting for extra length (gzip) */
26 EXTRA, /* i: waiting for extra bytes (gzip) */
40 LENEXT, /* i: waiting for length extra bits */
42 DISTEXT, /* i: waiting for distance extra bits */
60 (gzip) -> FLAGS -> TIME -> OS -> EXLEN -> EXTRA -> NAME
100 unsigned extra; /* extra bits needed */ member in struct:inflate_state
  /external/skia/src/animator/
SkTypedArray.cpp 139 void SkDS32Array::growBy(U16CPU extra)
141 SkASSERT(extra);
142 SkASSERT(fCount + extra <= 0xFFFF);
144 if (fCount + extra > fReserve)
146 size_t size = fCount + extra + 4;
158 fCount = SkToU16(fCount + extra);
  /external/zlib/contrib/infback9/
inftree9.c 56 const unsigned short FAR *extra; /* extra bits table to use */ local
57 int end; /* use base and extra for symbol > end */
64 static const unsigned short lext[31] = { /* Length codes 257..285 extra */
72 static const unsigned short dext[32] = { /* Distance codes 0..31 extra */
177 base = extra = work; /* dummy value--not used */
183 extra = lext;
184 extra -= 257;
189 extra = dext;
218 this.op = (unsigned char)(extra[work[sym]])
    [all...]
infback9.c 236 unsigned extra; /* extra bits needed */ local
515 /* length code -- get extra bits, if any */
516 extra = (unsigned)(here.op) & 31;
517 if (extra != 0) {
518 NEEDBITS(extra);
519 length += BITS(extra);
520 DROPBITS(extra);
548 /* get distance extra bits, if any */
549 extra = (unsigned)(here.op) & 15
    [all...]
  /frameworks/base/core/java/android/speech/tts/
TextToSpeech.java 210 * {@link #EXTRA_TTS_DATA_INSTALLED} extra.
244 * Extra information received with the {@link #ACTION_CHECK_TTS_DATA} intent where
249 * Extra information received with the {@link #ACTION_CHECK_TTS_DATA} intent where
255 * Extra information received with the {@link #ACTION_CHECK_TTS_DATA} intent where
260 * Extra information received with the {@link #ACTION_CHECK_TTS_DATA} intent where
267 * Extra information received with the {@link #ACTION_CHECK_TTS_DATA} intent where
274 * Extra information sent with the {@link #ACTION_CHECK_TTS_DATA} intent where the
284 * Extra information received with the {@link #ACTION_TTS_DATA_INSTALLED} intent.
287 * intent. The possible values for this extra are
726 String extra = params.get(Engine.KEY_PARAM_STREAM) local
790 String extra = params.get(Engine.KEY_PARAM_STREAM); local
848 String extra = params.get(Engine.KEY_PARAM_UTTERANCE_ID); local
1235 String extra = params.get(Engine.KEY_PARAM_UTTERANCE_ID); local
    [all...]
  /external/chromium/base/
trace_event.cc 117 const std::wstring& extra,
122 Trace(name, type, id, WideToUTF8(extra), file, line);
128 const std::string& extra,
143 "'name':'%s', 'id':'%p', 'extra':'%s', 'file':'%s', "
150 extra.c_str(),
  /external/libxml2/
libxml.h 65 void __xmlIOErr(int domain, int code, const char *extra);
  /frameworks/base/opengl/libagl/
state.h 33 ogles_context_t *ogles_init(size_t extra);
  /external/stlport/
configure 44 --with-extra-cxxflags=<options>
45 pass extra options to C++ compiler
46 --with-extra-cflags=<options>
47 pass extra options to C compiler
48 --with-extra-ldflags=<options>
49 pass extra options to linker (via C/C++)
99 \$CXXFLAGS pass extra options to C++ compiler
100 \$CFLAGS pass extra options to C compiler
101 \$LDFLAGS pass extra options to linker (via C/C++)
182 --with-extra-cxxflags=*
    [all...]
  /external/chromium/net/data/proxy_resolver_v8_unittest/
ends_with_comment.js 8 // those extra functions was being considered part of the comment
  /external/qemu/block/
bochs.c 58 } extra; member in struct:bochs_header_v1
79 } extra; member in struct:bochs_header
144 bs->total_sectors = le64_to_cpu(header_v1.extra.redolog.disk) / 512;
146 bs->total_sectors = le64_to_cpu(bochs.extra.redolog.disk) / 512;
151 s->catalog_size = le32_to_cpu(bochs.extra.redolog.catalog);
161 s->bitmap_blocks = 1 + (le32_to_cpu(bochs.extra.redolog.bitmap) - 1) / 512;
162 s->extent_blocks = 1 + (le32_to_cpu(bochs.extra.redolog.extent) - 1) / 512;
164 s->extent_size = le32_to_cpu(bochs.extra.redolog.extent);
  /external/freetype/src/cff/
cffcmap.c 37 CFF_Font cff = (CFF_Font)face->extra.data;
126 CFF_Font cff = (CFF_Font)face->extra.data;
140 CFF_Font cff = (CFF_Font)face->extra.data;
176 CFF_Font cff = (CFF_Font)face->extra.data;
189 CFF_Font cff = (CFF_Font)face->extra.data;
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/
CCMBlockCipher.java 293 int extra; local
300 extra = 2;
311 extra = 6;
316 extra = (extra + associatedText.length) % 16;
317 if (extra != 0)
319 for (int i = 0; i != 16 - extra; i++)
GCMBlockCipher.java 241 int extra = bufOff; local
244 if (extra < macSize)
248 extra -= macSize;
251 if (extra > 0)
254 System.arraycopy(bufBlock, 0, tmp, 0, extra);
255 gCTRBlock(tmp, extra, out, outOff);
272 int resultLen = extra;
288 System.arraycopy(bufBlock, extra, msgMac, 0, macSize);
  /external/skia/src/xml/
SkXMLWriter.cpp 121 size_t extra = 0; local
136 // now record the extra size needed
137 extra += seqSize - 1; // minus one to subtract the original char
142 return extra;
151 size_t extra = escape_markup(NULL, value, length); local
152 if (extra)
154 valueStr.resize(length + extra);
157 length += extra;
  /libcore/luni/src/main/java/java/util/zip/
ZipEntry.java 47 byte[] extra; field in class:ZipEntry
111 * Gets the extra information for this {@code ZipEntry}.
113 * @return a byte array containing the extra information, or {@code null} if
117 return extra;
218 * Sets the extra information for this {@code ZipEntry}.
221 * a byte array containing the extra information.
227 extra = data;
315 extra = ze.extra;
398 extra = new byte[extraLen]
    [all...]
ZipOutputStream.java 156 if (currentEntry.extra != null) {
157 curOffset += writeShort(cDir, currentEntry.extra.length);
173 if (currentEntry.extra != null) {
174 cDir.write(currentEntry.extra);
304 if (currentEntry.extra != null) {
305 writeShort(out, currentEntry.extra.length);
311 if (currentEntry.extra != null) {
312 out.write(currentEntry.extra);
  /external/chromium/third_party/zlib/
inflate.h 24 OS, /* i: waiting for extra flags and operating system (gzip) */
25 EXLEN, /* i: waiting for extra length (gzip) */
26 EXTRA, /* i: waiting for extra bytes (gzip) */
40 LENEXT, /* i: waiting for length extra bits */
42 DISTEXT, /* i: waiting for distance extra bits */
60 (gzip) -> FLAGS -> TIME -> OS -> EXLEN -> EXTRA -> NAME
100 unsigned extra; /* extra bits needed */ member in struct:inflate_state
  /external/zlib/
inflate.h 24 OS, /* i: waiting for extra flags and operating system (gzip) */
25 EXLEN, /* i: waiting for extra length (gzip) */
26 EXTRA, /* i: waiting for extra bytes (gzip) */
42 LENEXT, /* i: waiting for length extra bits */
44 DISTEXT, /* i: waiting for distance extra bits */
62 (gzip) -> FLAGS -> TIME -> OS -> EXLEN -> EXTRA -> NAME -> COMMENT ->
104 unsigned extra; /* extra bits needed */ member in struct:inflate_state
inftrees.c 56 const unsigned short FAR *extra; /* extra bits table to use */ local
57 int end; /* use base and extra for symbol > end */
63 static const unsigned short lext[31] = { /* Length codes 257..285 extra */
70 static const unsigned short dext[32] = { /* Distance codes 0..29 extra */
183 base = extra = work; /* dummy value--not used */
189 extra = lext;
190 extra -= 257;
195 extra = dext;
224 here.op = (unsigned char)(extra[work[sym]])
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
Insn.java 304 * @param extra {@code null-ok;} the inline argument string
307 protected final String toStringWithInline(String extra) {
315 if (extra != null) {
317 sb.append(extra);
337 * @param extra {@code null-ok;} the inline argument string
340 protected final String toHumanWithInline(String extra) {
347 if (extra != null) {
349 sb.append(extra);
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
eap_sim_common.h 93 const u8 *mac, const u8 *extra, size_t extra_len);
95 const u8 *extra, size_t extra_len);
105 const u8 *mac, const u8 *extra,
108 u8 *mac, const u8 *extra, size_t extra_len);
133 const u8 *mac, const u8 *extra,
221 const u8 *extra, size_t extra_len);
  /external/freetype/src/smooth/
ftsmooth.c 178 FT_Int extra = slot->library->lcd_extra; local
183 x_shift -= 64 * ( extra >> 1 );
184 width += 3 * extra;
186 x_left -= extra >> 1;
191 y_shift -= 64 * ( extra >> 1 );
192 height += 3 * extra;
193 y_top += extra >> 1;
  /frameworks/base/libs/binder/
MemoryDealer.cpp 317 int extra = 0; local
319 extra = ( -cur->start & ((pagesize/kMemoryAlign)-1) ) ;
322 if (cur->free && (cur->size >= (size+extra))) {
338 int extra = 0; local
340 extra = ( -free_chunk->start & ((pagesize/kMemoryAlign)-1) ) ;
341 if (extra) {
342 chunk_t* split = new chunk_t(free_chunk->start, extra);
343 free_chunk->start += extra;
351 const ssize_t tail_free = free_size - (size+extra);

Completed in 1158 milliseconds

12 3 4 5 6 7 8 91011>>