Searched refs:position (Results 1 - 25 of 159) sorted by relevance

1234567

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh64/mach-cayman/
H A Dled.c28 void mach_led(int position, int value) argument
40 void mach_alphanum(int position, unsigned char value) argument
45 ctrl_outb(value, HDSP2534_ADDR + 0xe0 + (position << 2));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/asm/
H A DLabel.java33 * A label represents a position in the bytecode of a method. Labels are used
46 * Indicates if the position of this label is known.
51 * The position of this label in the code, if known.
53 int position; field in class:Label
56 * If the label position has been updated, after instruction resizing.
68 * position of the first byte of the bytecode instruction that contains the
69 * forward reference, while the second is the position of the first byte of
72 * gives the position of the bytecode instruction.
145 throw new IllegalStateException("Label offset position has not been resolved yet");
147 return position;
239 resolve( final MethodWriter owner, final int position, final byte[] data) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/include/private/
H A Dogg_helper.h40 FLAC__bool simple_ogg_page__get_at(FLAC__StreamEncoder *encoder, FLAC__uint64 position, ogg_page *page, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderReadCallback read_callback, void *client_data);
41 FLAC__bool simple_ogg_page__set_at(FLAC__StreamEncoder *encoder, FLAC__uint64 position, ogg_page *page, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderWriteCallback write_callback, void *client_data);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/xfs/
H A Dxfs_behavior.c31 * The behavior chain is ordered based on the 'position' number which
41 int position; local
44 * Validate the position value of the new behavior.
46 position = BHV_POSITION(bdp);
47 ASSERT(position >= BHV_POSITION_BASE && position <= BHV_POSITION_TOP);
63 /* Find correct position */
64 if (position >= BHV_POSITION(curdesc)) {
65 ASSERT(position != BHV_POSITION(curdesc));
86 * Remove a behavior descriptor from a position i
125 int position = BHV_POSITION(curdesc); local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/
H A DMultipleNIODataEntry.java41 * Return the bulk retrieval flag and reset the entry position so that the
77 saveoffset = this.data_nio.position();
78 this.data_nio.position(pos - INT32SZ);
80 this.data_nio.position(saveoffset);
91 // move the position to one before the last offset read.
H A DMultipleKeyNIODataEntry.java41 * Return the bulk retrieval flag and reset the entry position so that the
77 saveoffset = this.data_nio.position();
78 this.data_nio.position(pos - INT32SZ*3);
80 this.data_nio.position(saveoffset);
92 // move the position to one before the last offset read.
H A DMultipleRecnoNIODataEntry.java41 * Return the bulk retrieval flag and reset the entry position so that the
81 saveoffset = this.data_nio.position();
82 this.data_nio.position(pos - INT32SZ*2);
84 this.data_nio.position(saveoffset);
95 // move the position to one before the last offset read.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ia64/sn/kernel/
H A Dklconflib.c46 int rack, position; local
78 position = MODULE_GET_BPOS(m);
103 /* Add the bay position, using at least two digits */
104 if (position < 10)
106 sprintf(buffer, "%d", position);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dgl_anylinked_list2.h142 gl_linked_get_at (gl_list_t list, size_t position) argument
147 if (!(position < count))
151 if (position <= ((count - 1) / 2))
154 for (; position > 0; position--)
159 position = count - 1 - position;
161 for (; position > 0; position--)
168 gl_linked_set_at (gl_list_t list, size_t position, cons argument
615 gl_linked_add_at(gl_list_t list, size_t position, const void *elt) argument
697 gl_linked_remove_at(gl_list_t list, size_t position) argument
924 size_t position = low; local
994 size_t position = low; local
[all...]
H A Dgl_array_list.c147 gl_array_get_at (gl_list_t list, size_t position) argument
151 if (!(position < count))
154 return list->elements[position];
158 gl_array_set_at (gl_list_t list, size_t position, const void *elt) argument
162 if (!(position < count))
165 list->elements[position] = elt;
166 return INDEX_TO_NODE (position);
276 size_t position; local
283 position = index;
287 for (i = count; i > position;
299 size_t position; local
318 gl_array_add_at(gl_list_t list, size_t position, const void *elt) argument
342 size_t position; local
360 gl_array_remove_at(gl_list_t list, size_t position) argument
381 size_t position = gl_array_indexof_from_to (list, 0, list->count, elt); local
[all...]
H A Dgl_list.c81 gl_list_get_at (gl_list_t list, size_t position) argument
84 ->get_at (list, position);
88 gl_list_set_at (gl_list_t list, size_t position, const void *elt) argument
91 ->set_at (list, position, elt);
169 gl_list_add_at (gl_list_t list, size_t position, const void *elt) argument
172 ->add_at (list, position, elt);
183 gl_list_remove_at (gl_list_t list, size_t position) argument
186 ->remove_at (list, position);
H A Dgl_list.h113 /* Type representing the position of an element in the list, in a way that
169 /* Return the element at a given position in the list.
171 extern const void * gl_list_get_at (gl_list_t list, size_t position);
173 /* Replace the element at a given position in the list.
176 extern gl_list_node_t gl_list_set_at (gl_list_t list, size_t position,
184 at a position >= START_INDEX.
190 at a position >= START_INDEX and < END_INDEX.
198 Return its position if found, or (size_t)(-1) if not present in the list. */
202 at a position >= START_INDEX.
203 Return its position i
510 gl_list_get_at(gl_list_t list, size_t position) argument
518 gl_list_set_at(gl_list_t list, size_t position, const void *elt) argument
612 gl_list_add_at(gl_list_t list, size_t position, const void *elt) argument
628 gl_list_remove_at(gl_list_t list, size_t position) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/miscutils/
H A Dmt.c59 struct mtpos position; local
109 ioctl_or_perror_and_die(fd, MTIOCPOS, &position, "%s", file);
110 printf("At block %d.\n", (int) position.mt_blkno);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libvorbis-1.2.3/doc/
H A Da1-encapsulation-ogg.tex91 The granule position of these first pages containing only headers is zero.
111 The granule position of pages containing Vorbis audio is in units
112 of PCM audio samples (per channel; a stereo stream's granule position
117 The granule position of a page represents the end PCM sample
118 position of the last packet \emph{completed} on that
123 position, and the granule position is set to '-1'.
130 current packet be at position (3*long\_block\_length/4) -
135 The granule (PCM) position of the first page need not indicate
136 that the stream started at position zer
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/
H A Dogg_helper.c94 FLAC__bool simple_ogg_page__get_at(FLAC__StreamEncoder *encoder, FLAC__uint64 position, ogg_page *page, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderReadCallback read_callback, void *client_data) argument
109 if((seek_status = seek_callback((FLAC__StreamEncoder*)encoder, position, client_data)) != FLAC__STREAM_ENCODER_SEEK_STATUS_OK) {
178 FLAC__bool simple_ogg_page__set_at(FLAC__StreamEncoder *encoder, FLAC__uint64 position, ogg_page *page, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderWriteCallback write_callback, void *client_data) argument
190 if((seek_status = seek_callback((FLAC__StreamEncoder*)encoder, position, client_data)) != FLAC__STREAM_ENCODER_SEEK_STATUS_OK) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/dvb/frontends/
H A Dnxt200x.c419 u16 rambase, position, crc = 0; local
438 for (position = 0; position < fw->size; position++) {
442 buf[0] = ((rambase + position) >> 8);
443 buf[1] = (rambase + position) & 0xFF;
452 nxt200x_writebytes(state, chunkpos, &fw->data[position-3], 4);
454 crc = nxt200x_crc(crc, fw->data[position]);
456 if ((written == 255) || (position+1 == fw->size)) {
459 &fw->data[position
486 u16 rambase, position, crc=0; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/python/
H A Dpy_spoolss_jobs_conv.c34 { "position", PY_UINT32, offsetof(JOB_INFO_1, position) },
54 { "position", PY_UINT32, offsetof(JOB_INFO_2, position) },
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgrep/
H A Ddfa.h203 So a position is encoded as an index into the parse tree together with
208 unsigned constraint; /* Constraint for matching this position. */
209 } position; typedef in typeref:struct:__anon2392
214 position *elems; /* Elements of this position set. */
219 and the token value of the lowest-numbered position of the state that
318 position_set *follows; /* Array of follow sets, indexed by position
319 index. The follow of a position is the set
322 matching the given position in a string
324 maximum possible position inde
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/core/seq/
H A Dseq_timer.h135 int snd_seq_timer_set_position_tick(struct snd_seq_timer *tmr, snd_seq_tick_time_t position);
136 int snd_seq_timer_set_position_time(struct snd_seq_timer *tmr, snd_seq_real_time_t position);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/flex/
H A Dtblcmp.c328 * find_table_space() returns the position of the start of the first block (in
339 /* Firstfree is the position of the first possible occurrence of two
797 int position = find_table_space( state, transnum ); local
800 base[statenum] = position;
803 * find_table_space() knows that this position in chk/nxt is taken
807 chk[position - 1] = 1;
812 chk[position] = 1;
820 chk[position + i] = i;
821 nxt[position + i] = *state_ptr;
824 if ( position
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/dso/
H A Ddso_win32.c308 enum { IN_NODE, IN_DEVICE, IN_FILE } position; local
328 position = IN_DEVICE;
333 position = IN_NODE;
345 if(position != IN_DEVICE)
354 position = IN_FILE;
360 if(position == IN_NODE)
363 position = IN_FILE;
367 else if(position == IN_DEVICE)
369 position = IN_FILE;
383 if(position
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/tests/
H A Dxgettext-glade-239 <position>GTK_WIN_POS_NONE</position>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/aic7xxx/aicasm/
H A Daicasm_macro_gram.y67 static void add_macro_arg(const char *argtext, int position);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/parisc/math-emu/
H A Dcnv_float.h297 #define Find_ms_one_bit(value, position) \
301 if (value >> 32 - position) \
302 position -= var; \
303 else position += var; \
305 if ((value >> 32 - position) == 0) \
306 position--; \
307 else position -= 2; \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dformat-lisp.c125 int value; /* for PT_INTEGER: the value, for PT_V: the position */
2020 unsigned int position, enum format_arg_type type)
2022 *listp = add_required_constraint (*listp, position);
2023 *listp = add_type_constraint (*listp, position, type);
2029 unsigned int position, enum format_arg_type type,
2032 *listp = add_required_constraint (*listp, position);
2033 *listp = add_listtype_constraint (*listp, position, type, sublist);
2358 int position = params->value; local
2359 if (position >= 0)
2360 add_req_type_constraint (listp, position, *t_type
2019 add_req_type_constraint(struct format_arg_list **listp, unsigned int position, enum format_arg_type type) argument
2028 add_req_listtype_constraint(struct format_arg_list **listp, unsigned int position, enum format_arg_type type, struct format_arg_list *sublist) argument
2380 int position = params->value; local
2411 int position = params->value; local
2448 int position = *positionp; local
3412 int position = 0; local
[all...]

Completed in 138 milliseconds

1234567