Searched refs:position (Results 101 - 125 of 164) sorted by relevance

1234567

/freebsd-10.3-release/sys/dev/drm2/radeon/
H A Dradeon_display.c312 * scanout position we know that the current frame is
1535 * Retrieve current video scanout position of crtc on a given gpu.
1539 * \param *vpos Location where vertical scanout position should be stored.
1540 * \param *hpos Location where horizontal scanout position should go.
1551 * DRM_SCANOUTPOS_ACCURATE = Returned position is accurate. A lack of
1552 * this flag means that returned position may be offset by a constant but
1553 * unknown small number of scanlines wrt. real scanout position.
1558 u32 stat_crtc = 0, vbl = 0, position = 0; local
1568 position = RREG32(EVERGREEN_CRTC_STATUS_POSITION +
1575 position
[all...]
/freebsd-10.3-release/contrib/less/
H A Dsearch.c17 #include "position.h"
286 pos = position(slinenum);
326 pos = position(slinenum);
329 epos = position(slinenum+1);
548 * If pos is hidden, return the next position which isn't, otherwise
570 * If pos is hidden, return the previous position which isn't or 0 if
948 * If the source position (before cvt) of the char is one more
1051 prep_hilite(scrpos.pos, position(BOTTOM_PLUS_ONE), -1);
1140 pos = position(linenum);
1154 pos = position(linenu
[all...]
/freebsd-10.3-release/contrib/diff/src/
H A Dcmp.c304 /* If the files are links to the same inode and have the same file position,
584 /* Find the rough position of the first difference by reading words,
598 /* Find the exact differing position (endianness independent). */
622 /* Find the rough position of the first difference by reading words,
628 /* Find the exact differing position (endianness independent). */
669 /* Position file F to ignore_initial[F] bytes from its initial position, local
670 and yield its new position. Don't try more than once. */
676 static off_t position[2];
681 position[f] = lseek (file_desc[f], ignore_initial[f], SEEK_CUR);
683 return position[
[all...]
/freebsd-10.3-release/gnu/usr.bin/grep/
H A Ddfa.c1411 /* Insert a position in a set. Position sets are maintained in sorted
1412 order according to index. If position already exists in the set with
1416 insert (position p, position_set *s)
1419 position t1, t2;
1462 /* Delete a position from a set. */
1464 delete (position p, position_set *s)
1476 /* Find the index of the state corresponding to the given position set with
1511 MALLOC(d->states[i].elems.elems, position, s->nelem);
1545 /* Find the epsilon closure of a set of positions. If any position of the set
1547 that position wit
[all...]
/freebsd-10.3-release/contrib/llvm/include/llvm/ADT/
H A Dilist.h484 // [first, last) into position.
486 void transfer(iterator position, iplist &L2, iterator first, iterator last) { argument
490 assert(position != first &&
493 if (position != last) {
501 // Remove [first, last) from its old position.
510 // Splice [first, last) into its new position.
511 NodeTy *PosNext = position.getNodePtrUnchecked();
/freebsd-10.3-release/sys/contrib/dev/acpica/include/
H A Dacmacros.h260 * MASK_BITS_ABOVE creates a mask starting AT the position and above
261 * MASK_BITS_BELOW creates a mask starting one bit BELOW the position
263 #define ACPI_MASK_BITS_ABOVE(position) (~((ACPI_UINT64_MAX) << ((UINT32) (position))))
264 #define ACPI_MASK_BITS_BELOW(position) ((ACPI_UINT64_MAX) << ((UINT32) (position)))
296 /* Macros to extract flag bits from position zero */
303 /* Macros to extract flag bits from position one and above */
/freebsd-10.3-release/sys/boot/i386/btx/btxldr/
H A Dbtxldr.S59 .set BDA_POS,0x450 # Cursor position
308 movw (%ebx),%dx # Cursor position
317 mulb %dh # * row position
319 adcb $0x0,%ah # position
339 putchr.4: movw %dx,(%ebx) # Update position
/freebsd-10.3-release/contrib/gdb/gdb/
H A Devent-loop.c214 static void async_queue_event (gdb_event * event_ptr, queue_position position);
223 the specified position.
233 async_queue_event (gdb_event * event_ptr, queue_position position)
235 if (position == TAIL)
246 else if (position == HEAD)
232 async_queue_event(gdb_event * event_ptr, queue_position position) argument
/freebsd-10.3-release/contrib/groff/src/devices/xditview/
H A DDviP.h115 long position; member in struct:_dviFileMap
/freebsd-10.3-release/contrib/groff/src/roff/troff/
H A Ddiv.h98 vunits position; member in struct:trap
/freebsd-10.3-release/sys/sys/
H A Dcdio.h105 struct cd_sub_channel_position_data position; member in union:cd_sub_channel_info::__anon11940
/freebsd-10.3-release/lib/libc/mips/gen/
H A Dldexp.S74 sll v0, a2, 20 # position N for addition
159 srl t2, t2, 31 - 20 # shift fraction back to normal position
/freebsd-10.3-release/sys/boot/pc98/boot0.5/
H A Dsyscons.s105 # Change the current cursor position
253 curpos: .word 0 # Current cursor position
/freebsd-10.3-release/contrib/ofed/management/opensm/opensm/
H A Dosm_mcast_mgr.c343 uint32_t position = 0; local
374 (uint8_t) position, block)) {
378 block_id_ho = block_num + (position << 28);
393 if (++position > max_position) {
394 position = 0;
/freebsd-10.3-release/contrib/texinfo/makeinfo/
H A Dinsertion.c732 char position[200] = "";
757 position[c] = '\0';
775 position[c] = insertion_stack->item_function[i];
813 canon_white (position);
819 xstrdup (floattype), xstrdup (position));
730 char position[200] = ""; local
/freebsd-10.3-release/contrib/ntp/sntp/libevent/
H A Dbuffer.c2576 /* Subract <b>howfar</b> from the position of <b>pos</b> within
2603 size_t position, enum evbuffer_ptr_how how)
2605 size_t left = position;
2614 pos->pos = position;
2615 position = 0;
2619 we just want to advance the position */
2620 if (pos->pos < 0 || EV_SIZE_MAX - position < (size_t)pos->pos) {
2625 pos->pos += position;
2626 position = pos->internal_.pos_in_chain;
2630 EVUTIL_ASSERT(EV_SIZE_MAX - left >= position);
2602 evbuffer_ptr_set(struct evbuffer *buf, struct evbuffer_ptr *pos, size_t position, enum evbuffer_ptr_how how) argument
2662 size_t position; local
[all...]
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DTypeCategory.cpp471 TypeCategoryImpl::Enable (bool value, uint32_t position) argument
475 m_enabled_position = position;
/freebsd-10.3-release/contrib/ntp/sntp/libevent/include/event2/
H A Dbuffer.h104 Pointer to a position within an evbuffer.
111 An evbuffer_ptr can represent any position from the start of a buffer up
112 to a position immediately after the end of a buffer.
374 @param pos the position to start reading from
772 /** Sets the pointer to the position; can be called on with an
775 /** Advances the pointer by adding to the current position. */
780 Sets the search pointer in the buffer to position.
784 to move 'pos' to a position 'N' bytes after the start of the buffer, or
791 An evbuffer_ptr can represent any position from the start of the buffer to
792 a position immediatel
[all...]
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DTypeCategory.h269 Enable (bool value, uint32_t position);
/freebsd-10.3-release/sys/boot/pc98/btx/btxldr/
H A Dbtxldr.S55 .set BDA_POS,0xa153e # Cursor position
322 movw (%ebx),%dx # Cursor position
350 putchr.4: movw %dx,(%ebx) # Update position
/freebsd-10.3-release/contrib/libreadline/
H A Dtext.c1611 _rl_set_mark_at_pos (position)
1612 int position;
1614 if (position > rl_end)
1617 rl_mark = position;
1629 /* Exchange the position of mark and point. */
/freebsd-10.3-release/contrib/expat/lib/
H A Dxmltok.h112 typedef struct position { struct
/freebsd-10.3-release/contrib/ldns/ldns/
H A Drr.h516 * position given. The old value is returned, like pop.
519 * \param[in] position the position the set the rdf
522 ldns_rdf* ldns_rr_set_rdf(ldns_rr *rr, const ldns_rdf *f, size_t position);
535 * popped from the last position.
622 * \return the rr at position nr
881 * Return the rr_list which matches the rdf at position field. Think
886 * \param[in] pos at which position can we find the rdf
/freebsd-10.3-release/usr.sbin/cdcontrol/
H A Dcdcontrol.c830 printf ("Audio status = %d<%s>, current track = %d, current position = %d:%02d.%02d\n",
1138 *trk = s.data->what.position.track_number;
1140 *min = s.data->what.position.reladdr.msf.minute;
1141 *sec = s.data->what.position.reladdr.msf.second;
1142 *frame = s.data->what.position.reladdr.msf.frame;
1144 lba2msf(ntohl(s.data->what.position.reladdr.lba),
/freebsd-10.3-release/contrib/libarchive/libarchive/
H A Darchive_read_support_format_rar.c199 int64_t position; member in struct:lzss
519 return lzss->position;
549 return lzss_offset_for_position(lzss, lzss->position);
555 return lzss_pointer_for_position(lzss, lzss->position);
562 rar->lzss.position++;
595 rar->lzss.position += length;
1491 rar->dbo[rar->cursor].start_offset = a->filter->position;
1535 rar->dbo[0].start_offset = a->filter->position;
1564 rar->lzss.position = rar->offset = 0;
2392 "Invalid repeat position");
[all...]

Completed in 227 milliseconds

1234567