HomeSort by relevance Sort by last modified time
    Searched refs:extra (Results 226 - 250 of 656) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/mpeg2ts/
ATSParser.cpp 58 DiscontinuityType type, const sp<AMessage> &extra);
105 DiscontinuityType type, const sp<AMessage> &extra);
203 DiscontinuityType type, const sp<AMessage> &extra) {
205 mStreams.editValueAt(i)->signalDiscontinuity(type, extra);
549 DiscontinuityType type, const sp<AMessage> &extra) {
572 if (extra != NULL
573 && extra->findInt64(
579 extra->setInt64("resume-at-mediatimeUs", resumeAtMediaTimeUs);
584 mSource->queueDiscontinuity(type, extra);
865 DiscontinuityType type, const sp<AMessage> &extra) {
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
regcomp.c 40 void *extra);
43 void *extra);
44 static reg_errcode_t optimize_subexps (void *extra, bin_tree_t *node);
45 static reg_errcode_t lower_subexps (void *extra, bin_tree_t *node);
48 static reg_errcode_t calc_first (void *extra, bin_tree_t *node);
49 static reg_errcode_t calc_next (void *extra, bin_tree_t *node);
50 static reg_errcode_t link_nfa_nodes (void *extra, bin_tree_t *node);
113 const unsigned char *extra,
123 static reg_errcode_t free_tree (void *extra, bin_tree_t *node);
124 static reg_errcode_t mark_opt_subexp (void *extra, bin_tree_t *node)
2764 const unsigned char *extra; local
3412 const unsigned char *weights, *extra, *cp; local
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
inflate.c 19 * - Remove unnecessary second byte pull from length extra in inffast.c
34 * - Remove distance extra == 0 check in inflate_fast()--only helps for lengths
678 state->head->extra = Z_NULL;
679 state->mode = EXTRA;
680 case EXTRA:
686 state->head->extra != Z_NULL) {
688 zmemcpy(state->head->extra + len, next,
    [all...]
trees.c 61 local const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */
64 local const int extra_dbits[D_CODES] /* extra bits for each distance code */
67 local const int extra_blbits[BL_CODES]/* extra bits for each bit length code */
92 * need for the L_CODES extra codes used during heap construction. However
123 const intf *extra_bits; /* extra bits for each code or NULL */
497 const intf *extra = desc->stat_desc->extra_bits; local
503 int xbits; /* extra bits */
525 if (n >= base) xbits = extra[n-base];
655 /* node is 0 or 1 so it does not have extra bits */
1081 int extra; \/* number of extra bits to send *\/ local
    [all...]
  /external/freetype/src/pfr/
pfrload.c 32 /***** EXTRA ITEMS *****/
70 PFR_ExtraItem extra = item_list; local
73 for ( extra = item_list; extra->parser != NULL; extra++ )
75 if ( extra->type == item_type )
77 error = extra->parser( p, p + item_size, item_data );
93 FT_ERROR(( "pfr_extra_items_parse: invalid extra items table\n" ));
756 /* load the extra items when present */
  /external/openssl/crypto/x509v3/
pcy_tree.c 641 X509_POLICY_DATA *extra; local
673 extra = policy_data_new(NULL, oid,
675 if (!extra)
677 extra->qualifier_set = anyPolicy->data->qualifier_set;
678 extra->flags = POLICY_DATA_FLAG_SHARED_QUALIFIERS
680 node = level_add_node(NULL, extra, anyPolicy->parent,
  /external/ppp/pppd/plugins/rp-pppoe/
discovery.c 49 * extra -- user-supplied pointer. This is assumed to be a pointer to int.
53 * If a HostUnique tag is found which matches our PID, sets *extra to 1.
57 void *extra)
59 int *val = (int *) extra;
101 * extra -- extra user data. Should point to a PacketCriteria structure
111 void *extra)
113 struct PacketCriteria *pc = (struct PacketCriteria *) extra;
199 * extra -- extra user data (pointer to PPPoEConnection structure
    [all...]
common.c 38 * extra -- an opaque data pointer supplied to parsing function
43 * "func" is passed the additional argument "extra".
46 parsePacket(PPPoEPacket *packet, ParseFunc *func, void *extra)
82 func(tagType, tagLen, curTag+TAG_HDR_SIZE, extra);
389 * msg -- if non-NULL, extra error message to include in PADT packet.
479 * extra -- extra user data
487 void *extra)
  /external/valgrind/main/coregrind/
m_debuglog.c 468 Int i, extra; local
485 extra = width - len;
487 ret += extra;
488 for (i = 0; i < extra; i++)
495 ret += extra;
496 for (i = 0; i < extra; i++)
  /external/valgrind/main/massif/tests/
insig.post.exp 36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
58 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
80 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
  /bootable/bootloader/legacy/usbloader/
usbloader.c 433 int extra = 0; local
466 extra = 64;
473 if(flash_write(ptn, extra, (void*) kernel_addr, kernel_size)) {
  /external/skia/src/core/
SkUtils.cpp 353 int extra = (uni > 0xFFFF);
356 if (extra) {
370 return 1 + extra;
  /external/v8/src/
conversions.cc 346 const int extra = negative ? 2 : 1; local
349 const int n = Min(len, p - (builder.position() - extra));
352 builder.AddPadding('0', extra + (p - builder.position()));
  /frameworks/av/cmds/stagefright/
stream.cpp 99 sp<AMessage> extra = new AMessage;
100 extra->setInt32(IStreamListener::kKeyFormatChange, 0);
103 IStreamListener::DISCONTINUITY, false /* synchronous */, extra);
  /packages/apps/Launcher2/src/com/android/launcher2/
WallpaperChooserDialogFragment.java 208 for (String extra : extras) {
209 int res = resources.getIdentifier(extra, "drawable", packageName);
211 final int thumbRes = resources.getIdentifier(extra + "_small",
217 // Log.d(TAG, "add: [" + packageName + "]: " + extra + " (" + res + ")");
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
task.rb 258 if extra = options[ :extra_dependencies ]
259 extra = [ extra ].flatten
260 @extra_dependencies.concat( extra )
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
backtracking.rb 54 * fixed look; k=2 made a few extra thousand lines. ;)
  /external/bluetooth/glib/tests/
markup-test.c 10 indent (int extra)
  /external/chromium/net/base/
test_root_certs_win.cc 26 const void* extra,
  /external/kernel-headers/original/asm-arm/
thread_info.h 44 __u32 extra[2]; /* Xscale 'acc' register, etc */ member in struct:cpu_context_save
  /external/oprofile/libpp/
arrange_profiles.h 153 /// the extra images to consider for this profile_classes
179 merge_option const & merge_by, extra_images const & extra);
name_storage.h 104 * @param extra extra locations where the image can be found
110 * multiple call with the image_name_id and different extra parameter
116 extra_images const & extra) const;
profile_spec.cpp 34 string const fixup_image_spec(string const & str, extra_images const & extra)
39 return extra.find_image_path(str, error, true);
42 void fixup_image_spec(vector<string> & images, extra_images const & extra)
48 *it = fixup_image_spec(*it, extra);
  /packages/apps/Browser/src/com/android/browser/
UI.java 87 public void showComboView(ComboViews startingView, Bundle extra);
  /external/freetype/src/cff/
cffobjs.c 58 CFF_Font font = (CFF_Font)face->extra.data;
76 CFF_Font font = (CFF_Font)face->extra.data;
163 CFF_Font font = (CFF_Font)face->extra.data;
222 CFF_Font font = (CFF_Font)face->extra.data;
294 CFF_Font font = (CFF_Font)cffface->extra.data;
349 CFF_Font font = (CFF_Font)face->extra.data;
588 face->extra.data = cff;
    [all...]

Completed in 587 milliseconds

1 2 3 4 5 6 7 8 91011>>