Searched refs:cursor (Results 76 - 100 of 131) sorted by relevance

123456

/freebsd-10.2-release/crypto/heimdal/lib/hx509/
H A Dks_p12.c663 void **cursor)
666 return hx509_certs_start_seq(context, p12->certs, cursor);
673 void *cursor,
677 return hx509_certs_next_cert(context, p12->certs, cursor, cert);
684 void *cursor)
687 return hx509_certs_end_seq(context, p12->certs, cursor);
660 p12_iter_start(hx509_context context, hx509_certs certs, void *data, void **cursor) argument
670 p12_iter(hx509_context context, hx509_certs certs, void *data, void *cursor, hx509_cert *cert) argument
681 p12_iter_end(hx509_context context, hx509_certs certs, void *data, void *cursor) argument
H A Dks_file.c591 hx509_certs certs, void *data, void **cursor)
594 return hx509_certs_start_seq(context, ksf->certs, cursor);
609 void *cursor)
612 return hx509_certs_end_seq(context, ksf->certs, cursor);
590 file_iter_start(hx509_context context, hx509_certs certs, void *data, void **cursor) argument
606 file_iter_end(hx509_context context, hx509_certs certs, void *data, void *cursor) argument
/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DIOHandler.h204 /// sequences are expected to work (cursor movement escape sequences,
261 const char *cursor,
450 const char *cursor,
485 const char *cursor,
/freebsd-10.2-release/crypto/heimdal/lib/krb5/
H A Dacache.c741 krb5_cc_cursor *cursor)
758 *cursor = iter;
766 krb5_cc_cursor *cursor,
769 cc_credentials_iterator_t iter = *cursor;
793 krb5_cc_cursor *cursor)
795 cc_credentials_iterator_t iter = *cursor;
897 acc_get_cache_first(krb5_context context, krb5_cc_cursor *cursor) argument
926 *cursor = iter;
931 acc_get_cache_next(krb5_context context, krb5_cc_cursor cursor, krb5_ccache *id) argument
933 struct cache_iter *iter = cursor;
739 acc_get_first(krb5_context context, krb5_ccache id, krb5_cc_cursor *cursor) argument
764 acc_get_next(krb5_context context, krb5_ccache id, krb5_cc_cursor *cursor, krb5_creds *creds) argument
791 acc_end_get(krb5_context context, krb5_ccache id, krb5_cc_cursor *cursor) argument
969 acc_end_cache_get(krb5_context context, krb5_cc_cursor cursor) argument
[all...]
H A Drd_req.c964 krb5_kt_cursor cursor; local
967 memset(&cursor, 0, sizeof(cursor));
972 ret = krb5_kt_start_seq_get(context, id, &cursor);
980 ret = krb5_kt_next_entry(context, id, &entry, &cursor);
1033 krb5_kt_end_seq_get (context, id, &cursor);
/freebsd-10.2-release/sys/boot/pc98/boot0.5/
H A Dsyscons.s105 # Change the current cursor position
234 # cursor home and off
253 curpos: .word 0 # Current cursor position
/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBCommandInterpreter.h88 // The pointer based interface is not useful in SWIG, since the cursor & last_char arguments are string pointers INTO current_line
91 // In either case, the way this works is that the you give it a line and cursor position in the line. The function
93 // element is the common substring after the cursor position for all the matches. The rest of the elements are the
96 // and if so just insert it and move the cursor to the end of the insertion. The next tab will return an empty
102 const char *cursor,
/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/Host/
H A DEditline.h48 const char *cursor,
/freebsd-10.2-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Ddmu_objset.c1486 zap_cursor_t cursor; local
1494 zap_cursor_init_serialized(&cursor,
1498 if (zap_cursor_retrieve(&cursor, &attr) != 0) {
1499 zap_cursor_fini(&cursor);
1504 zap_cursor_fini(&cursor);
1513 zap_cursor_advance(&cursor);
1514 *offp = zap_cursor_serialize(&cursor);
1515 zap_cursor_fini(&cursor);
1525 zap_cursor_t cursor; local
1533 zap_cursor_init_serialized(&cursor,
[all...]
H A Dmetaslab.c1046 metaslab_block_picker(avl_tree_t *t, uint64_t *cursor, uint64_t size, argument
1052 rsearch.rs_start = *cursor;
1053 rsearch.rs_end = *cursor + size;
1063 *cursor = offset + size;
1070 * If we know we've searched the whole map (*cursor == 0), give up.
1071 * Otherwise, reset the cursor to the beginning and try again.
1073 if (*cursor == 0)
1076 *cursor = 0;
1077 return (metaslab_block_picker(t, cursor, size, align));
1091 * alignment from the same area of the metaslab (i.e. same cursor
1096 uint64_t *cursor = &msp->ms_lbas[highbit64(align) - 1]; local
1125 uint64_t *cursor = &msp->ms_lbas[highbit64(align) - 1]; local
1168 uint64_t *cursor = &msp->ms_lbas[0]; local
1220 uint64_t *cursor = &msp->ms_lbas[hbit - 1]; local
[all...]
/freebsd-10.2-release/sys/dev/drm2/i915/
H A Dintel_pm.c1049 /* cursor SR */
1067 /* cursor HPLL off SR */
1091 const struct intel_watermark_params *cursor,
1103 *cursor_wm = cursor->guard_size;
1123 /* Use the large buffer method to calculate cursor watermark */
1127 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
1130 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
1131 *cursor_wm = entries + cursor->guard_size;
1132 if (*cursor_wm > (int)cursor
1087 g4x_compute_wm0(struct drm_device *dev, int plane, const struct intel_watermark_params *display, int display_latency_ns, const struct intel_watermark_params *cursor, int cursor_latency_ns, int *plane_wm, int *cursor_wm) argument
1145 g4x_check_srwm(struct drm_device *dev, int display_wm, int cursor_wm, const struct intel_watermark_params *display, const struct intel_watermark_params *cursor) argument
1173 g4x_compute_srwm(struct drm_device *dev, int plane, int latency_ns, const struct intel_watermark_params *display, const struct intel_watermark_params *cursor, int *display_wm, int *cursor_wm) argument
1607 ironlake_check_srwm(struct drm_device *dev, int level, int fbc_wm, int display_wm, int cursor_wm, const struct intel_watermark_params *display, const struct intel_watermark_params *cursor) argument
1650 ironlake_compute_srwm(struct drm_device *dev, int level, int plane, int latency_ns, const struct intel_watermark_params *display, const struct intel_watermark_params *cursor, int *fbc_wm, int *display_wm, int *cursor_wm) argument
[all...]
/freebsd-10.2-release/etc/rc.d/
H A Dsyscons272 # cursor type
274 case ${cursor} in
279 echo -n ' cursor'; vidcontrol < ${viddev} -c ${cursor}
/freebsd-10.2-release/crypto/heimdal/lib/hdb/
H A Dmkey.c116 krb5_kt_cursor cursor; local
124 ret = krb5_kt_start_seq_get(context, id, &cursor);
128 while(krb5_kt_next_entry(context, id, &entry, &cursor) == 0) {
131 krb5_kt_end_seq_get(context, id, &cursor);
140 krb5_kt_end_seq_get(context, id, &cursor);
/freebsd-10.2-release/sys/boot/pc98/boot2/
H A Dboot1.S128 mov $0x13,%ah /* cursor home */
131 mov $0x11,%ah /* cursor on */
263 mov MEM_REL+cursor-start,%di
308 putc.move: mov %di,MEM_REL+cursor-start /* Move cursor */
315 cursor: .word 0 label
/freebsd-10.2-release/lib/libpam/modules/pam_krb5/
H A Dpam_krb5.c369 krb5_cc_cursor cursor;
522 krbret = krb5_cc_start_seq_get(pam_context, ccache_temp, &cursor);
535 &cursor, &creds) == 0)) {
548 krb5_cc_end_seq_get(pam_context, ccache_temp, &cursor);
/freebsd-10.2-release/contrib/libarchive/libarchive/
H A Darchive_read_private.h140 unsigned int cursor; member in struct:archive_read_client
/freebsd-10.2-release/lib/libedit/
H A Dtokenizer.c184 * cursorc if !NULL, argv element containing cursor
185 * cursorv if !NULL, offset in argv[cursorc] of cursor
199 if (ptr == line->cursor) {
434 * and splitting into words, ignoring cursor state.
443 li.cursor = li.lastchar = strchr(line, '\0');
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Expression/
H A DClangASTSource.cpp1039 const char *cursor = candidate_name; local
1041 if (*cursor != '+' && *cursor != '-')
1044 ++cursor;
1046 if (*cursor != '[')
1049 ++cursor;
1053 if (strncmp(cursor, interface_name.c_str(), interface_len))
1056 cursor += interface_len;
1058 if (*cursor == ' ' || *cursor
[all...]
/freebsd-10.2-release/contrib/binutils/bfd/
H A Dbout.c859 arelent *cursor = cache_ptr-1;
863 while (cursor->address > stop && cursor >= reloc_cache)
865 cursor[1] = cursor[0];
866 cursor--;
869 cursor[1] = tmp;
858 arelent *cursor = cache_ptr-1; local
/freebsd-10.2-release/sys/dev/vt/hw/vga/
H A Dvt_vga.c705 * We use the saved cursor position (saved in vt_flush()), because
716 struct vt_mouse_cursor *cursor; local
720 cursor = vd->vd_mcursor;
724 /* Compute the portion of the cursor we want to copy. */
728 cursor->width - src_x,
734 * The cursor isn't aligned on the Y-axis with
741 min(cursor->height - src_y, y + vf->vf_height - my),
744 /* Copy the cursor portion. */
746 cursor->map, cursor
[all...]
/freebsd-10.2-release/sys/dev/syscons/
H A Dscvgarndr.c282 /* the caller may set height <= 0 in order to disable the cursor */
355 if (scp->curs_attr.height <= 0) /* the text cursor is disabled */
408 u_short cursor[32]; local
428 cursor[i] = font_buf[i]<<8 | font_buf[i+32];
429 cursor[i + scp->font_size] = font_buf[i+64]<<8 | font_buf[i+96];
436 cursor[i + yoffset] =
437 (cursor[i + yoffset] & ~(mouse_and_mask[i] >> xoffset))
441 font_buf[i] = (cursor[i] & 0xff00) >> 8;
442 font_buf[i + 32] = cursor[i] & 0xff;
443 font_buf[i + 64] = (cursor[
[all...]
H A Dscterm-teken.c145 /* Valid old cursor position. */
554 int cursor, attr; local
571 cursor = tp->tp_row * scp->xsize + tp->tp_col;
572 p = sc_vtb_pointer(&scp->vtb, cursor);
575 mark_for_update(scp, cursor);
577 * XXX: Why do we need this? Only marking `cursor' should be
580 mark_for_update(scp, imin(cursor + 1, scp->xsize * scp->ysize - 1));
/freebsd-10.2-release/contrib/jemalloc/src/
H A Dprof.c183 unw_cursor_t cursor; local
192 unw_init_local(&cursor, &uc);
196 err = unw_step(&cursor);
206 unw_get_reg(&cursor, UNW_REG_IP, (unw_word_t *)&bt->vec[i]);
208 err = unw_step(&cursor);
/freebsd-10.2-release/crypto/heimdal/appl/telnet/libtelnet/
H A Dkerberos5.c173 krb5_kt_cursor cursor; local
179 ret = krb5_kt_start_seq_get (context, kt, &cursor);
184 krb5_kt_end_seq_get (context, kt, &cursor);
/freebsd-10.2-release/contrib/telnet/libtelnet/
H A Dkerberos5.c154 krb5_kt_cursor cursor; local
160 ret = krb5_kt_start_seq_get (context, kt, &cursor);
165 krb5_kt_end_seq_get (context, kt, &cursor);

Completed in 237 milliseconds

123456