HomeSort by relevance Sort by last modified time
    Searched refs:extra (Results 151 - 175 of 761) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
printf.h 47 unsigned int extra:1; /* For special use. */ member in struct:printf_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
printf.h 47 unsigned int extra:1; /* For special use. */ member in struct:printf_info
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
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/freetype/src/cff/
cffdrivr.c 230 CFF_Font font = (CFF_Font)face->extra.data;
274 cff = (CFF_FontRec *)face->extra.data;
323 CFF_Font cff = (CFF_Font)face->extra.data;
380 CFF_Font cff = (CFF_Font)face->extra.data;
448 CFF_Font cff = (CFF_Font)face->extra.data;
503 CFF_Font cff = (CFF_Font)face->extra.data;
530 cff = (CFF_Font)face->extra.data;
  /external/qemu/distrib/zlib-1.2.3/
infback.c 520 /* length code -- get extra bits, if any */
521 state->extra = (unsigned)(this.op) & 15;
522 if (state->extra != 0) {
523 NEEDBITS(state->extra);
524 state->length += BITS(state->extra);
525 DROPBITS(state->extra);
553 /* get distance extra bits, if any */
554 state->extra = (unsigned)(this.op) & 15;
555 if (state->extra != 0) {
556 NEEDBITS(state->extra);
    [all...]
  /external/zlib/src/
infback.c 537 /* length code -- get extra bits, if any */
538 state->extra = (unsigned)(here.op) & 15;
539 if (state->extra != 0) {
540 NEEDBITS(state->extra);
541 state->length += BITS(state->extra);
542 DROPBITS(state->extra);
570 /* get distance extra bits, if any */
571 state->extra = (unsigned)(here.op) & 15;
572 if (state->extra != 0) {
573 NEEDBITS(state->extra);
    [all...]
  /external/skia/include/core/
SkTDArray.h 338 void growBy(size_t extra) {
339 SkASSERT(extra);
341 if (fCount + extra > fReserve) {
342 size_t size = fCount + extra + 4;
351 fCount += extra;
  /external/skia/legacy/include/core/
SkTDArray.h 299 void growBy(size_t extra) {
300 SkASSERT(extra);
302 if (fCount + extra > fReserve) {
303 size_t size = fCount + extra + 4;
312 fCount += extra;
  /external/wpa_supplicant_8/src/eap_common/
eap_sim_common.c 166 const u8 *mac, const u8 *extra, size_t extra_len)
184 addr[1] = extra;
192 wpa_hexdump(MSG_MSGDUMP, "EAP-SIM: Verify MAC - extra data",
193 extra, extra_len);
206 const u8 *extra, size_t extra_len)
214 addr[1] = extra;
220 wpa_hexdump(MSG_MSGDUMP, "EAP-SIM: Add MAC - extra data",
221 extra, extra_len);
361 const u8 *mac, const u8 *extra, size_t extra_len)
379 addr[1] = extra;
1026 msg->mac, extra, extra_len); local
1033 extra, extra_len); local
    [all...]
  /external/chromium/webkit/glue/
webkitclient_impl.cc 286 const char* extra) {
287 TRACE_EVENT_BEGIN(name, id, extra);
290 "extra", extra ? extra : "");
294 const char* extra) {
295 TRACE_EVENT_END(name, id, extra);
  /external/oprofile/libutil++/
bfd_support.cpp 49 extra_images const & extra)
56 string const image_path = extra.find_image_path(name, img_ok, true);
297 string & debug_filename, extra_images const & extra)
319 if (separate_debug_file_exists(first_try, crc32, extra))
321 else if (separate_debug_file_exists(second_try, crc32, extra))
323 else if (separate_debug_file_exists(third_try, crc32, extra))
527 * then we need to do the extra processing in translate_debuginfo_syms.
  /external/v8/test/mjsunit/bugs/
bug-941049.js 38 f.arguments.extra = 'kallevip';
42 assertEquals('kallevip', f.arguments.extra);
74 assertEquals('kallevip', args.extra);
  /external/valgrind/main/exp-sgcheck/tests/
bad_percentify.c 186 Int i, extra; local
203 extra = width - len;
205 ret += extra;
206 for (i = 0; i < extra; i++)
213 ret += extra;
214 for (i = 0; i < extra; i++)
  /external/valgrind/main/massif/tests/
long-time.post.exp 36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
48 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
62 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
89 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
100 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
115 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
130 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
141 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
157 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
175 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B
    [all...]
  /external/wpa_supplicant_8/src/p2p/
p2p_pd.c 49 size_t extra = 0; local
53 extra = wpabuf_len(p2p->wfd_ie_prov_disc_req);
56 buf = wpabuf_alloc(1000 + extra);
91 size_t extra = 0; local
111 extra = wpabuf_len(wfd_ie);
114 buf = wpabuf_alloc(100 + extra);
  /frameworks/av/media/libstagefright/chromium_http/
support.cpp 463 const KeyedVector<String8, String8> *extra,
472 if (offset != 0 || extra != NULL) {
483 if (extra != NULL) {
484 for (size_t i = 0; i < extra->size(); ++i) {
486 s.append(extra->keyAt(i).string());
488 s.append(extra->valueAt(i).string());
  /frameworks/support/v4/java/android/support/v4/app/
ShareCompat.java 38 * Extra helper functionality for sharing data between activities.
60 * Intent extra that stores the name of the calling package for an ACTION_SEND intent.
71 * Intent extra that stores the {@link ComponentName} of the calling activity for
343 private void combineArrayExtra(String extra, ArrayList<String> add) {
344 String[] currentAddresses = mIntent.getStringArrayExtra(extra);
351 mIntent.putExtra(extra, finalAddresses);
354 private void combineArrayExtra(String extra, String[] add) {
357 String[] old = intent.getStringArrayExtra(extra);
362 intent.putExtra(extra, result);
640 * in addition to extra metadata about the app that shared the content
    [all...]
  /frameworks/av/media/libstagefright/mpeg2ts/
ATSParser.cpp 59 DiscontinuityType type, const sp<AMessage> &extra);
114 DiscontinuityType type, const sp<AMessage> &extra);
217 DiscontinuityType type, const sp<AMessage> &extra) {
220 && extra != NULL
221 && extra->findInt64(
227 mStreams.editValueAt(i)->signalDiscontinuity(type, extra);
625 DiscontinuityType type, const sp<AMessage> &extra) {
650 if (extra != NULL
651 && extra->findInt64(
657 extra->setInt64("resume-at-mediatimeUs", resumeAtMediaTimeUs)
    [all...]
  /bionic/libc/kernel/common/linux/
spinlock.h 31 #define LOCK_SECTION_START(extra) ".subsection 1\n\t" extra ".ifndef " LOCK_SECTION_NAME "\n\t" LOCK_SECTION_NAME ":\n\t" ".endif\n"
  /development/ndk/platforms/android-3/include/linux/
spinlock.h 26 #define LOCK_SECTION_START(extra) ".subsection 1\n\t" extra ".ifndef " LOCK_SECTION_NAME "\n\t" LOCK_SECTION_NAME ":\n\t" ".endif\n"
  /external/chromium/third_party/libjingle/source/talk/base/
schanneladapter.cc 261 size_t extra = 0; local
266 extra += buffer.cbBuffer;
274 extra += buffer.cbBuffer;
283 if (extra) {
284 ASSERT(extra <= impl_->inbuf.size());
285 size_t consumed = impl_->inbuf.size() - extra;
286 memmove(&impl_->inbuf[0], &impl_->inbuf[consumed], extra);
287 impl_->inbuf.resize(extra);
  /external/icu4c/extra/scrptrun/
Makefile.in 1 ## Makefile.in for ICU - extra/scrptrun
17 subdir = extra/scrptrun
19 ## Extra files to remove for 'make clean'
  /external/icu4c/layout/
PairPositioningSubtables.cpp 145 le_uint16 extra = (recordCount - power) * recordSize;
148 const PairValueRecord *trial = (const PairValueRecord *) ((char *) record + extra);
  /external/icu4c/test/perf/collationperf/
Makefile.in 16 ## Extra files to remove for 'make clean'
58 $(INVOKE) ./$(TARGET) -loop 200 -file $(top_srcdir)/extra/uconv/samples/utf8/utf-8-demo.txt -keygen -shifted
  /external/libxslt/
Android.mk 13 libxslt/extra.c \

Completed in 847 milliseconds

1 2 3 4 5 67 8 91011>>