Searched refs:component (Results 26 - 50 of 115) sorted by relevance

12345

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dmjpegenc.c215 put_bits(&s->pb, 8, 9); /* 9 bits/component RCT */
217 put_bits(&s->pb, 8, 8); /* 8 bits/component */
222 /* Y component */
223 put_bits(&s->pb, 8, 1); /* component number */
228 /* Cb component */
229 put_bits(&s->pb, 8, 2); /* component number */
238 /* Cr component */
239 put_bits(&s->pb, 8, 3); /* component number */
253 /* Y component */
258 /* Cb component */
376 int component, dc, run, last_index, val; local
[all...]
H A Dmpeg12enc.c55 int component);
811 static inline void encode_dc(MpegEncContext *s, int diff, int component) argument
822 if (component == 0) {
834 if (component == 0) {
853 int code, component; local
860 component = (n <= 3 ? 0 : (n&1) + 1);
862 diff = dc - s->last_dc[component];
863 encode_dc(s, diff, component);
864 s->last_dc[component] = dc;
H A Dmotionpixels.c132 static int mp_gradient(MotionPixelsContext *mp, int component, int v) argument
136 delta = (v - 7) * mp->gradient_scale[component];
137 mp->gradient_scale[component] = (v == 0 || v == 14) ? 2 : 1;
H A Dituh263dec.c464 int component, diff; local
465 component = (n <= 3 ? 0 : n - 4 + 1);
466 level = s->last_dc[component];
467 if (s->rv10_first_dc_coded[component]) {
473 s->last_dc[component] = level;
475 s->rv10_first_dc_coded[component] = 1;
H A Dmpeg12.c86 int component; local
93 component = (n <= 3 ? 0 : n - 4 + 1);
94 diff = decode_dc(&s->gb, component);
97 dc = s->last_dc[component];
99 s->last_dc[component] = dc;
450 int component; local
460 component = 0;
463 component = (n & 1) + 1;
465 diff = decode_dc(&s->gb, component);
468 dc = s->last_dc[component];
528 int component; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/tm6000/
H A Dtm6000.h260 int tm6000_tuner_callback(void *ptr, int component, int command, int arg);
261 int tm6000_xc5000_callback(void *ptr, int component, int command, int arg);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/
H A Dses.c318 if (!edev->component[0].scratch)
322 scomp = edev->component[i].scratch;
405 ecomp = &edev->component[components++];
592 edev->component[i].scratch = scomp + i;
659 kfree(edev->component[0].scratch);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dmotionpixels.c174 static int mp_gradient(MotionPixelsContext *mp, int component, int v) argument
178 delta = (v - 7) * mp->gradient_scale[component];
179 mp->gradient_scale[component] = (v == 0 || v == 14) ? 2 : 1;
H A Dmpeg12enc.c607 static inline void encode_dc(MpegEncContext *s, int diff, int component) argument
618 if (component == 0)
629 if (component == 0)
643 int code, component; local
650 component = (n <= 3 ? 0 : (n & 1) + 1);
652 diff = dc - s->last_dc[component];
653 encode_dc(s, diff, component);
654 s->last_dc[component] = dc;
H A Dituh263dec.c441 int component, diff; local
442 component = (n <= 3 ? 0 : n - 4 + 1);
443 level = s->last_dc[component];
444 if (s->rv10_first_dc_coded[component]) {
450 s->last_dc[component] = level;
452 s->rv10_first_dc_coded[component] = 1;
H A Dmpeg12dec.c142 int component; local
149 component = (n <= 3 ? 0 : n - 4 + 1);
150 diff = decode_dc(&s->gb, component);
153 dc = s->last_dc[component];
155 s->last_dc[component] = dc;
547 int component; local
557 component = 0;
560 component = (n & 1) + 1;
562 diff = decode_dc(&s->gb, component);
565 dc = s->last_dc[component];
633 int component; local
[all...]
H A Dmss4.c356 int vec_size, int component, int shift, int *prev)
361 return prev[component];
362 prev[component] = get_bits(gb, 8 - shift) << shift;
363 return prev[component];
372 * The idea is that every component has a vector of 1-4 most common symbols
355 get_value_cached(GetBitContext *gb, int vec_pos, uint8_t *vec, int vec_size, int component, int shift, int *prev) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dpalette.tex63 red, blue or green component.
97 red, blue or green component.
H A Dgraphicsmatrix.tex44 Returns the component values of the matrix via the argument pointers.
H A Dfilename.tex252 Appends a directory component to the path. This component should contain a
676 Inserts a directory component before the zero-based position in the directory
700 Returns {\tt true} if the directory component of this instance (or given \arg{dir})
712 Returns {\tt true} if the directory component of this instance (or given \arg{dir})
901 Removes the specified directory component from the path.
912 Removes last directory component from the path.
1011 value of a particular component. Also, {\it fullpath} may be empty on entry.
1016 component is. The old contents of the strings pointed to by these parameters
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/core/
H A Dinit.c799 * snd_component_add - add a component string
801 * @component: the component id string
803 * This function adds the component id string to the supported list.
804 * The component can be referred from the alsa-lib.
809 int snd_component_add(struct snd_card *card, const char *component) argument
812 int len = strlen(component);
814 ptr = strstr(card->components, component);
825 strcat(card->components, component);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/acpi/acpica/
H A Dnsdump.c113 * Component - Caller's component ID
123 acpi_ns_dump_pathname(acpi_handle handle, char *msg, u32 level, u32 component) argument
128 /* Do this only if the requested debug level and component are enabled */
130 if (!(acpi_dbg_level & level) || !(acpi_dbg_layer & component)) {
H A Dacnamesp.h179 acpi_ns_dump_pathname(acpi_handle handle, char *msg, u32 level, u32 component);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Dmxfdec.c698 MXFStructuralComponent *component = NULL; local
716 /* TODO: handle timecode component */
717 component = mxf_resolve_strong_ref(mxf, &material_track->sequence->structural_components_refs[j], SourceClip);
718 if (!component)
725 if (!memcmp(temp_package->package_uid, component->source_package_uid, 16)) {
739 if (temp_track->track_id == component->source_track_id) {
759 st->duration = component->duration;
762 st->start_time = component->start_position;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/nmbd/
H A Dnmbd_processlogon.c389 char *component, *dc, *q1; local
422 while ((component = strtok(dc, "."))) {
424 size = push_ascii(&q[1], component, -1, 0);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/usb/
H A Dcard.c296 char component[14]; local
342 sprintf(component, "USB%04x:%04x",
344 snd_component_add(card, component);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/dvb/dvb-core/
H A Ddvb_frontend.h374 int (*callback)(void *adapter_priv, int component, int cmd, int arg);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/au0828/
H A Dau0828-cards.c124 int au0828_tuner_callback(void *priv, int component, int command, int arg) argument
H A Dau0828.h271 extern int au0828_tuner_callback(void *priv, int component,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/cx18/
H A Dcx18-gpio.c324 int cx18_reset_tuner_gpio(void *dev, int component, int cmd, int value) argument

Completed in 249 milliseconds

12345