HomeSort by relevance Sort by last modified time
    Searched defs:extra (Results 126 - 150 of 601) sorted by null

1 2 3 4 56 7 8 91011>>

  /libcore/luni/src/main/java/java/util/zip/
ZipEntry.java 53 byte[] extra; field in class:ZipEntry
71 long size, int compressionMethod, int time, int modDate, byte[] extra,
81 this.extra = extra;
130 * Gets the extra information for this {@code ZipEntry}.
132 * @return a byte array containing the extra information, or {@code null} if
136 return extra;
237 * Sets the extra information for this {@code ZipEntry}.
243 throw new IllegalArgumentException("Extra data too long: " + data.length);
245 extra = data
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
printf.h 48 unsigned int extra:1; /* For special use. */ member in struct:printf_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
printf.h 48 unsigned int extra:1; /* For special use. */ member in struct:printf_info
  /system/core/toolbox/
mount.c 65 static void add_extra_option(struct extra_opts *extra, char *s)
70 if (extra->str)
72 newlen = extra->used_size + len;
74 if (newlen >= extra->alloc_size) {
77 new = realloc(extra->str, newlen + 1); /* +1 for NUL */
81 extra->str = new;
82 extra->end = extra->str + extra->used_size;
83 extra->alloc_size = newlen + 1
161 static struct extra_opts extra; variable in typeref:struct:extra_opts
    [all...]
  /system/media/audio_utils/
tinysndfile.c 293 size_t extra = 0; local
298 extra = 14;
302 (void) fwrite(wav, 44 + extra, 1, stream);
339 size_t extra = (handle->info.format & SF_FORMAT_SUBMASK) == SF_FORMAT_FLOAT ? 14 : 0; local
340 (void) fread(wav, 44 + extra, 1, handle->stream);
342 write4u(&wav[4], dataSize + 36 + extra); // riffSize
343 write4u(&wav[40 + extra], dataSize); // dataSize
345 (void) fwrite(wav, 44 + extra, 1, handle->stream);
  /frameworks/opt/chips/tests/src/com/android/ex/chips/
ChipsTest.java 181 // the extra content between them correctly.
186 String extra = "EXTRA"; local
188 mEditable.append(first + extra + second);
197 assertEquals(editableString.indexOf(extra), -1);
199 assertEquals(editableString.indexOf(second), secondStart - extra.length());
202 // Add 1 chip and make sure that we remove the extra stuff before it correctly.
205 mEditable.append(extra);
213 - extra.length());
218 // the extra content between them correctly
223 String extra = "EXTRA"; local
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
RowsFragment.java 318 RowViewHolderExtra extra = (RowViewHolderExtra) vh.getExtraObject(); local
319 extra.animateSelect(selected, immediate);
393 RowViewHolderExtra extra = (RowViewHolderExtra) vh.getExtraObject();
394 extra.endAnimations();
  /packages/apps/Browser/src/com/android/browser/
SuggestionsAdapter.java 119 mListener.onSelect(getSuggestionUrl(item), item.type, item.extra);
382 public String extra; field in class:SuggestionsAdapter.SuggestItem
512 item.extra = mCursor.getString(
  /development/ndk/platforms/android-3/include/
zlib.h 112 int xflags; /* extra flags (not used when writing a gzip file) */
114 Bytef *extra; /* pointer to extra field or Z_NULL if none */ member in struct:gz_header_s
115 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */
116 uInt extra_max; /* space at extra (only when reading header) */
507 file name, no extra data, no comment, no modification time (set to zero),
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
CCMBlockCipher.java 381 int extra; local
389 extra = 2;
400 extra = 6;
412 extra = (extra + textLength) % 16;
413 if (extra != 0)
415 for (int i = extra; i != 16; i++)
GCMBlockCipher.java 315 int extra = bufOff; local
318 if (extra < macSize)
322 extra -= macSize;
325 if (extra > 0)
327 gCTRPartial(bufBlock, 0, extra, out, outOff);
385 int resultLen = extra;
401 System.arraycopy(bufBlock, extra, msgMac, 0, macSize);
  /external/chromium_org/sdch/open-vcdiff/src/zlib/
zlib.h 112 int xflags; /* extra flags (not used when writing a gzip file) */
114 Bytef *extra; /* pointer to extra field or Z_NULL if none */ member in struct:gz_header_s
115 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */
116 uInt extra_max; /* space at extra (only when reading header) */
507 file name, no extra data, no comment, no modification time (set to zero),
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
schanneladapter.cc 258 size_t extra = 0; local
263 extra += buffer.cbBuffer;
271 extra += buffer.cbBuffer;
280 if (extra) {
281 ASSERT(extra <= impl_->inbuf.size());
282 size_t consumed = impl_->inbuf.size() - extra;
283 memmove(&impl_->inbuf[0], &impl_->inbuf[consumed], extra);
284 impl_->inbuf.resize(extra);
  /external/chromium_org/third_party/libusb/src/libusb/
descriptor.c 95 if (endpoint->extra)
96 free((unsigned char *) endpoint->extra);
104 unsigned char *extra; local
145 usbi_err(ctx, "invalid extra ep desc len (%d)",
149 usbi_warn(ctx, "short extra ep desc read %d/%d",
171 endpoint->extra = NULL;
176 extra = malloc(len);
177 endpoint->extra = extra;
178 if (!extra) {
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_tokenize.c 136 t[i].extra = eb;
139 // initialize the cost for extra bits for all possible coefficient value.
145 const int extra = t[i].extra; local
149 cost += treed_cost(p->tree, p->prob, extra >> 1, length);
151 cost += vp9_cost_bit(vp9_prob_half, extra & 1); /* sign */
180 int16_t extra, uint8_t token,
184 (*t)->extra = extra;
265 vp9_dct_value_tokens_ptr[v].extra,
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_mpeg12_bitstream.c 899 unsigned extra = vl_vlc_get_uimsbf(&bs->vlc, 1); local
902 assert(extra);
  /external/chromium_org/third_party/re2/util/
pcre.cc 484 pcre_extra extra = { 0 }; local
486 extra.flags |= PCRE_EXTRA_MATCH_LIMIT;
487 extra.match_limit = match_limit;
490 extra.flags |= PCRE_EXTRA_MATCH_LIMIT_RECURSION;
491 extra.match_limit_recursion = stack_limit / kPCREFrameSize;
501 &extra,
514 // is filled, but we miss out on the positions of the extra subpatterns.
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkAnimatorScript.cpp 70 SkExtras* extra = *extraPtr; local
71 if (extra->fExtraCallBack)
72 propertyCallBack(extra->fExtraCallBack, extra->fExtraStorage);
  /external/chromium_org/third_party/webrtc/base/
schanneladapter.cc 241 size_t extra = 0; local
246 extra += buffer.cbBuffer;
254 extra += buffer.cbBuffer;
263 if (extra) {
264 ASSERT(extra <= impl_->inbuf.size());
265 size_t consumed = impl_->inbuf.size() - extra;
266 memmove(&impl_->inbuf[0], &impl_->inbuf[consumed], extra);
267 impl_->inbuf.resize(extra);
  /external/chromium_org/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) */
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
  /external/libvpx/libvpx/vp9/encoder/
vp9_tokenize.c 136 t[i].extra = eb;
139 // initialize the cost for extra bits for all possible coefficient value.
145 const int extra = t[i].extra; local
149 cost += treed_cost(p->tree, p->prob, extra >> 1, length);
151 cost += vp9_cost_bit(vp9_prob_half, extra & 1); /* sign */
180 int16_t extra, uint8_t token,
184 (*t)->extra = extra;
266 vp9_dct_value_tokens_ptr[v].extra,
    [all...]
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_mpeg12_bitstream.c 899 unsigned extra = vl_vlc_get_uimsbf(&bs->vlc, 1); local
902 assert(extra);
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
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
  /external/pixman/pixman/
pixman-glyph.c 444 uint32_t extra = FAST_PATH_SAMPLES_COVER_CLIP_NEAREST; local
470 glyph_format, glyph_flags | extra, local
  /external/qemu/distrib/zlib-1.2.8/
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

Completed in 879 milliseconds

1 2 3 4 56 7 8 91011>>