Searched defs:te (Results 1 - 25 of 31) sorted by relevance

12

/illumos-gate/usr/src/lib/libast/common/disc/
H A Dsfdctee.c49 reg Tee_t* te = (Tee_t*)disc; local
52 if(te->status == 0 && sfwrite(te->tee,buf,size) != (ssize_t)size)
53 te->status = -1;
84 reg Tee_t* te; local
86 if(!(te = (Tee_t*)malloc(sizeof(Tee_t))) )
89 te->disc.readf = NIL(Sfread_f);
90 te->disc.seekf = NIL(Sfseek_f);
91 te->disc.writef = teewrite;
92 te
[all...]
/illumos-gate/usr/src/lib/libast/common/tm/
H A Dtmxmake.c114 Tm_t te; local
116 te = *tm;
117 te.tm_year = y;
118 now = tmxsec(tmxtime(&te, tm->tm_zone->west));
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb2_ioctl.c54 struct smb2_ioctbl_ent *te; local
91 for (te = smb2_ioc_tbl; te->te_code; te++) {
92 if (te->te_code == fsctl.CtlCode)
95 if (te->te_code == 0) {
107 if ((te->te_flags & ITF_IPC_ONLY) != 0 &&
116 if (te->te_flags & ITF_NO_FID) {
132 if (te->te_flags & ITF_DISK_FID) {
168 status = (te
[all...]
/illumos-gate/usr/src/lib/libcmd/common/
H A Ddate.c277 Time_t te; local
390 te = convert(fmts, t, now);
391 if (te > ts)
392 e += te - ts;
394 e += ts - te;
/illumos-gate/usr/src/lib/libm/common/m9x/
H A D__fex_sse.c481 unsigned int e, te, mxcsr, oldmxcsr, subnorm; local
808 te = ~(uap->uc_mcontext.fpregs.fp_reg_set.fpchip_state.mxcsr
810 e = mxcsr & te;
817 if ((e & FE_UNDERFLOW) || (subnorm && (te & FE_UNDERFLOW)))
H A D__fex_i386.c112 int te; local
116 te = __fenv_get_te(cwsw);
117 *__fex_accrued() = cwsw & te;
118 cwsw = (cwsw & ~te) ^ 0x003f0000;
H A D__fex_hdlr.c95 int i, ex, te; local
98 te = 0;
101 te |= te_bit[i];
107 te |= (1 << fp_trap_inexact);
109 te |= (1 << fp_trap_underflow);
111 te |= (1 << fp_trap_overflow);
113 te |= (1 << fp_trap_division);
115 te |= (1 << fp_trap_invalid);
118 return te;
754 int i, te; local
808 int te; local
[all...]
/illumos-gate/usr/src/cmd/cdrw/
H A Dutil.c107 print_trackio_error(struct trackio_error *te) argument
114 switch (te->err_type) {
116 err_msg(gettext("System error: %s\n"), strerror(te->te_errno));
120 if (te->status == 2) {
121 if ((te->key == 3) && (te->asc == 0x0c) &&
122 (te->ascq == 9)) {
127 if (te->key == 3) {
133 te->key, te
[all...]
H A Ddevice.c731 struct trackio_error *te; local
760 te = (struct trackio_error *)my_zalloc(sizeof (*te));
764 if (!write_track(target, ti, h, progress, size, te)) {
765 if (te->err_type == TRACKIO_ERR_USER_ABORT) {
778 free(te);
H A Dtrackio.c262 int (*cb)(int64_t, int64_t), int64_t arg, struct trackio_error *te)
354 te->err_type = TRACKIO_ERR_SYSTEM;
355 te->te_errno = errno;
380 te->err_type = TRACKIO_ERR_SYSTEM;
381 te->te_errno = errno;
393 te->err_type = TRACKIO_ERR_SYSTEM;
394 te->te_errno = errno;
421 te->err_type = TRACKIO_ERR_USER_ABORT;
430 te->err_type = TRACKIO_ERR_TRANSPORT;
431 te
261 write_track(cd_device *dev, struct track_info *ti, bstreamhandle h, int (*cb)(int64_t, int64_t), int64_t arg, struct trackio_error *te) argument
[all...]
/illumos-gate/usr/src/lib/libast/common/string/
H A Dbase64.c56 register unsigned char* te; local
73 te = tp + tz - B64_EC + 1;
83 te = tp + sizeof(tmp) - B64_EC + 1;
93 if (tp >= te)
101 te = tp + sizeof(tmp) - B64_EC + 1;
122 if (tp >= te)
130 te = tp + sizeof(tmp) - B64_EC + 1;
146 if (tp < te)
167 register unsigned char* te; local
188 te
[all...]
/illumos-gate/usr/src/lib/libsmbfs/smb/
H A Drap.c308 uint16_t *te; local
316 te = (uint16_t *)rap->r_npbuf;
317 *value = letohs(*te);
/illumos-gate/usr/src/lib/pkcs11/pkcs11_tpm/common/
H A Dobj_mgr.c1974 TOK_OBJ_ENTRY * te = NULL; local
1985 te = &global_shm->publ_tok_objs[index];
1988 val = memcmp(obj->name, te->name, 8);
2010 if ((te->count_hi != obj->count_hi) ||
2011 (te->count_lo != obj->count_lo)) {
2013 obj->count_hi = te->count_hi;
2014 obj->count_lo = te->count_lo;
2026 (void) memcpy(new_obj->name, te->name, 8);
2051 te = &global_shm->publ_tok_objs[index];
2053 (void) memcpy(new_obj->name, te
2085 TOK_OBJ_ENTRY * te = NULL; local
[all...]
/illumos-gate/usr/src/lib/libslp/clib/
H A Dslp_targets.c147 struct da_node *te; local
243 for (te = tl->DAs; te; te = te->next)
244 add2scopes_list(te, tl);
377 static void add2scopes_list(struct da_node *te, struct target_list *tl) { argument
391 if (slp_onlist(s, te->scopes)) {
399 st->da = te;
418 struct da_node *te, * local
[all...]
/illumos-gate/usr/src/uts/common/io/chxge/
H A Dglue.c175 struct toetool_reg *te; local
203 te = (struct toetool_reg *)dmp->b_rptr;
305 if ((dmp->b_wptr - dmp->b_rptr) != sizeof (*te)) {
311 if ((te->addr & 3) != 0) {
316 (void) t1_tpi_read(chp, te->addr, &te->val);
318 iocp->ioc_count = sizeof (*te);
324 if ((dmp->b_wptr - dmp->b_rptr) != sizeof (*te)) {
330 if ((te->addr & 3) != 0) {
335 (void) t1_tpi_write(chp, te
[all...]
/illumos-gate/usr/src/cmd/mdb/common/modules/nca/
H A Dnca.c441 te_t te; local
485 for (te_addr = tb.head; te_addr != NULL; te_addr = te.next) {
486 if (mdb_vread(&te, sizeof (te_t), (uintptr_t)te_addr)
491 mdb_printf("%0p%s", te.ep, te.next == NULL ? "" : " ");
/illumos-gate/usr/src/lib/libast/common/comp/
H A Diconv.c536 register unsigned char* te; local
547 te = t + (*tn);
548 while (t < te && f < fe)
610 register unsigned char* te; local
620 te = t + (*tn);
621 while (f < fe && t < te)
641 if (t >= (te - 2))
650 if (t >= (te - 3))
720 register unsigned char* te; local
733 te
796 register unsigned char* te; local
870 register unsigned char* te; local
915 register unsigned char* te; local
961 register unsigned char* te; local
1006 register unsigned char* te; local
[all...]
/illumos-gate/usr/src/lib/libscf/common/
H A Dnotify_params.c343 add_entry(scf_transaction_entry_t *te, scf_value_t *val) argument
345 if (scf_entry_add_value(te, val) != 0) {
354 add_boolean_entry(scf_handle_t *h, scf_transaction_entry_t *te, uint8_t v) argument
363 return (add_entry(te, val));
367 add_count_entry(scf_handle_t *h, scf_transaction_entry_t *te, uint64_t v) argument
376 return (add_entry(te, val));
380 add_integer_entry(scf_handle_t *h, scf_transaction_entry_t *te, int64_t v) argument
389 return (add_entry(te, val));
393 add_astring_entry(scf_handle_t *h, scf_transaction_entry_t *te, char *s) argument
405 return (add_entry(te, va
409 get_nvpair_vals(scf_handle_t *h, scf_transaction_entry_t *te, nvpair_t *p) argument
645 prep_transaction(scf_transaction_t *tx, scf_transaction_entry_t *te, const char *prop, scf_type_t type) argument
747 scf_transaction_entry_t *te = local
[all...]
/illumos-gate/usr/src/cmd/sa/
H A Dsar.c342 uint64_t ts, te; /* time interval start and end */ local
539 te = nx.csi.cpu[0] + nx.csi.cpu[1] +
541 tdiff = (float)(te - ts);
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/ftp/
H A Dcmds.c1882 char *tp[9], *te[9]; local
1935 te[toknum] = cp1;
1937 te[toknum] = cp1 - len1;
1983 while (cp3 != te[toknum]) {
2007 te[toknum])
2070 while (cp3 != te[toknum]) {
/illumos-gate/usr/src/uts/common/fs/
H A Ddnlc.c1590 dcentry_t **prevpp, *te; local
1621 te = *prevpp;
1623 kmem_free(te, sizeof (dcentry_t) - 1 +
1624 te->de_namelen);
/illumos-gate/usr/src/uts/common/fs/udfs/
H A Dudf_vfsops.c1814 struct stbl_entry *te; local
1817 te = (struct stbl_entry *)&stbl->stbl_entry;
1821 printf("%x %x\n", bp->b_un.b_addr, te);
1824 printf("%x %x\n", SWAP_32(te->sent_ol), SWAP_32(te->sent_ml));
1825 te ++;
H A Dudf_subr.c193 struct stbl_entry *te; local
207 te = (struct stbl_entry *)&stbl->stbl_entry;
210 for (i = 0; i < entry_count; i++, te++) {
211 begin_bad = SWAP_32(te->sent_ol);
230 retblkno = SWAP_32(te->sent_ml) +
1370 struct term_entry *te; local
1375 te = (struct term_entry *)addr;
1376 if (ud_verify_tag_and_desc(&te->te_tag, UD_TERMINAL_ENT,
/illumos-gate/usr/src/uts/common/vm/
H A Dvm_usage.c1575 vmu_entity_t *te; local
1590 te = vmu_data.vmu_free_entities;
1593 if (te->vme_vnode_hash != NULL)
1594 mod_hash_destroy_hash(te->vme_vnode_hash);
1595 if (te->vme_amp_hash != NULL)
1596 mod_hash_destroy_hash(te->vme_amp_hash);
1597 if (te->vme_anon_hash != NULL)
1598 mod_hash_destroy_hash(te->vme_anon_hash);
1599 kmem_free(te, sizeof (vmu_entity_t));
/illumos-gate/usr/src/uts/common/io/
H A Dcmlb.c2209 uint32_t ts, te; local
2237 te = ts + cl->cl_fmap[FD_NUMPART].fmap_nblk - 1;
2239 while ((i < epart) && ts && te) {
2240 if (start >= ts && start <= te) {
2250 te = ts + cl->cl_fmap[i].fmap_nblk - 1;

Completed in 119 milliseconds

12