/titanic_41/usr/src/man/man9e/ |
H A D | Makefile | 19 MANSECT= 9e 21 MANFILES= Intro.9e \ 22 _fini.9e \ 23 aread.9e \ 24 attach.9e \ 25 awrite.9e \ 26 chpoll.9e \ 27 close.9e \ 28 csx_event_handler.9e \ 29 detach.9e \ [all …]
|
/titanic_41/usr/src/cmd/dtrace/test/tst/common/java_api/src/ |
H A D | TestStateMachine.java | 73 } catch (IllegalStateException e) { in beforeOpen() 74 System.out.println(e); in beforeOpen() 75 } catch (Exception e) { in beforeOpen() 76 e.printStackTrace(); in beforeOpen() 84 } catch (IllegalStateException e) { in beforeOpen() 85 System.out.println(e); in beforeOpen() 86 } catch (Exception e) { in beforeOpen() 87 e.printStackTrace(); in beforeOpen() 95 } catch (IllegalStateException e) { in beforeOpen() 96 System.out.println(e); in beforeOpen() [all …]
|
H A D | TestEnable.java | 62 } catch (IllegalStateException e) { in main() 63 System.out.println(e); in main() 64 } catch (Exception e) { in main() 65 e.printStackTrace(); in main() 73 } catch (IllegalStateException e) { in main() 74 System.out.println(e); in main() 75 } catch (Exception e) { in main() 76 e.printStackTrace(); in main() 84 } catch (IllegalStateException e) { in main() 85 System.out.println(e); in main() [all …]
|
/titanic_41/usr/src/cmd/sendmail/src/ |
H A D | envelope.c | 29 clrsessenvelope(e) 30 ENVELOPE *e; 33 macdefine(&e->e_macro, A_PERM, macid("{auth_type}"), ""); 34 macdefine(&e->e_macro, A_PERM, macid("{auth_authen}"), ""); 35 macdefine(&e->e_macro, A_PERM, macid("{auth_author}"), ""); 36 macdefine(&e->e_macro, A_PERM, macid("{auth_ssf}"), ""); 39 macdefine(&e->e_macro, A_PERM, macid("{cert_issuer}"), ""); 40 macdefine(&e->e_macro, A_PERM, macid("{cert_subject}"), ""); 41 macdefine(&e->e_macro, A_PERM, macid("{cipher_bits}"), ""); 42 macdefine(&e->e_macro, A_PERM, macid("{cipher}"), ""); [all …]
|
H A D | collect.c | 47 collect_eoh(e, numhdrs, hdrslen) in collect_eoh() argument 48 ENVELOPE *e; in collect_eoh() 61 (void) rscheck("check_eoh", hnum, hsize, e, RSF_UNSTRUCTURED|RSF_COUNT, 62 3, NULL, e->e_id, NULL); 69 collect_doheader(e); 70 return collect_dfopen(e); 92 collect_doheader(e) in collect_doheader() argument 93 ENVELOPE *e; in collect_doheader() 100 eatheader(e, true, false); 102 if (GrabTo && e->e_sendqueue == NULL) [all …]
|
H A D | srvrsmtp.c | 118 macdefine(&e->e_macro, A_TEMP, macid("{nbadrcpts}"), buf); \ 141 parse_esmtp_args(e, addr_st, p, delimptr, which, args, esmtp_args) in parse_esmtp_args() argument 142 ENVELOPE *e; in parse_esmtp_args() 191 esmtp_args(addr_st, kp, vp, e); 371 # define MILTER_ABORT(e) milter_abort((e)) argument 383 sm_syslog(LOG_INFO, e->e_id, \ 394 e->e_sendqueue = NULL; \ 401 sm_syslog(LOG_INFO, e->e_id, \ 414 e->e_sendqueue = NULL; \ 424 sm_syslog(LOG_INFO, e->e_id, \ [all …]
|
H A D | headers.c | 71 dochompheader(line, pflag, hdrp, e) in dochompheader() argument 75 ENVELOPE *e; 93 hdrp = &e->e_header; 203 (void) expand(fvalue, hbuf, sizeof(hbuf), e); 253 e->e_flags |= EF_RESENT; 258 (void) sendtolist(fvalue, NULLADDR, &e->e_errorqueue, 0, e); 342 sm_syslog(LOG_WARNING, e->e_id, 346 macdefine(&e->e_macro, A_TEMP, 348 macdefine(&e->e_macro, A_TEMP, 352 macdefine(&e->e_macro, A_TEMP, macid("{hdrlen}"), qval); [all …]
|
/titanic_41/usr/src/cmd/dtrace/test/tst/common/tracemem/ |
H A D | tst.dynsize.d.out | 2 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef 13 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef 24 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef 35 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef 46 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef 57 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef 68 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef 79 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef 90 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef 101 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef [all …]
|
/titanic_41/usr/src/cmd/sgs/m4/common/ |
H A D | m4y_xpg4.y | 54 s : e = { evalval = $1; } 58 e : e OROR e = { $$ = ($1 != 0 || $3 != 0) ? 1 : 0; } 59 | e ANDAND e = { $$ = ($1 != 0 && $3 != 0) ? 1 : 0; } 60 | '!' e = { $$ = $2 == 0; } 61 | '~' e = { $$ = ~$2; } 62 | e EQ e = { $$ = $1 == $3; } 63 | e NE e = { $$ = $1 != $3; } 64 | e GT e = { $$ = $1 > $3; } 65 | e GE e = { $$ = $1 >= $3; } 66 | e LT e = { $$ = $1 < $3; } [all …]
|
H A D | m4y.y | 52 s : e = { evalval = $1; } 56 e : e OROR e = { $$ = ($1 != 0 || $3 != 0) ? 1 : 0; } 57 | e ANDAND e = { $$ = ($1 != 0 && $3 != 0) ? 1 : 0; } 58 | '!' e = { $$ = $2 == 0; } 59 | '~' e = { $$ = ~$2; } 60 | e EQ e = { $$ = $1 == $3; } 61 | e NE e = { $$ = $1 != $3; } 62 | e GT e = { $$ = $1 > $3; } 63 | e GE e = { $$ = $1 >= $3; } 64 | e LT e = { $$ = $1 < $3; } [all …]
|
/titanic_41/usr/src/uts/common/io/audio/impl/ |
H A D | audio_engine.c | 153 auimpl_engine_reset(audio_engine_t *e) in auimpl_engine_reset() argument 160 tidx = e->e_tidx; in auimpl_engine_reset() 161 nfr = min(e->e_head - e->e_tail, e->e_nframes); in auimpl_engine_reset() 162 buf = kmem_alloc(nfr * e->e_framesz, KM_SLEEP); in auimpl_engine_reset() 166 ASSERT(e->e_nframes); in auimpl_engine_reset() 171 cnt = min((e->e_nframes - tidx), resid); in auimpl_engine_reset() 172 nbytes = cnt * e->e_framesz; in auimpl_engine_reset() 174 bcopy(e->e_data + (tidx * e->e_framesz), ptr, nbytes); in auimpl_engine_reset() 177 if (tidx == e->e_nframes) { in auimpl_engine_reset() 182 if (e->e_flags & ENGINE_INPUT) { in auimpl_engine_reset() [all …]
|
H A D | audio_input.c | 41 auimpl_import_##NAME(audio_engine_t *e, uint_t nfr, audio_stream_t *sp) \ 43 int nch = e->e_nchan; \ 45 TYPE *in = (void *)e->e_data; \ 53 int incr = e->e_chincr[ch]; \ 54 uint_t tidx = e->e_tidx; \ 58 ip = in + e->e_choffs[ch] + (tidx * incr); \ 73 if (++tidx == e->e_nframes) { \ 75 ip = in + e->e_choffs[ch]; \ 141 audio_engine_t *e = arg; in auimpl_input_callback() local 142 uint_t fragfr = e->e_fragfr; in auimpl_input_callback() [all …]
|
/titanic_41/usr/src/uts/common/io/cxgbe/t4nex/ |
H A D | t4_l2t.c | 148 struct l2t_entry *end, *e, **p; in alloc_l2e() local 156 for (e = d->rover, end = &d->l2tab[L2T_SIZE]; e != end; ++e) in alloc_l2e() 157 if (atomic_read(&e->refcnt) == 0) in alloc_l2e() 160 for (e = d->l2tab; atomic_read(&e->refcnt); ++e) in alloc_l2e() 163 d->rover = e + 1; in alloc_l2e() 170 if (e->state < L2T_STATE_SWITCHING) { in alloc_l2e() 171 for (p = &d->l2tab[e->hash].first; *p; p = &(*p)->next) { in alloc_l2e() 172 if (*p == e) { in alloc_l2e() 173 *p = e->next; in alloc_l2e() 174 e->next = NULL; in alloc_l2e() [all …]
|
/titanic_41/usr/src/lib/libm/common/m9x/ |
H A D | fmal.c | 97 int hx, hy, hz, ex, ey, ez, exy, sxy, sz, e, ibit; in __fmal() local 495 e = sxy; sxy = sz; sz = e; in __fmal() 496 e = exy; exy = ez; ez = e; in __fmal() 497 e = xy0; xy0 = z0; z0 = e; in __fmal() 498 e = xy1; xy1 = z1; z1 = e; in __fmal() 499 e = xy2; xy2 = z2; z2 = e; in __fmal() 500 e = xy3; xy3 = z3; z3 = e; in __fmal() 508 e = ez - exy; in __fmal() 509 if (e > 236) { in __fmal() 512 } else if (e >= 224) { in __fmal() [all …]
|
H A D | fma.c | 78 int hx, hy, hz, ex, ey, ez, exy, sxy, sz, e, ibit; in __fma() local 167 e = sxy; sxy = sz; sz = e; in __fma() 168 e = exy; exy = ez; ez = e; in __fma() 169 e = xy0; xy0 = z0; z0 = e; in __fma() 170 e = xy1; xy1 = z1; z1 = e; in __fma() 176 e = ez - exy; in __fma() 177 if (e > 116) { in __fma() 180 } else if (e >= 96) { in __fma() 181 sticky = xy3 | xy2 | xy1 | ((xy0 << 1) << (127 - e)); in __fma() 182 xy3 = xy0 >> (e - 96); in __fma() [all …]
|
/titanic_41/usr/src/lib/libsum/common/ |
H A D | sum-sha1.c | 100 uint32_t *d, uint32_t *e, CHAR64LONG16 *); 102 uint32_t *d, uint32_t *e, CHAR64LONG16 *); 104 uint32_t *d, uint32_t *e, CHAR64LONG16 *); 106 uint32_t *d, uint32_t *e, CHAR64LONG16 *); 116 uint32_t *e, CHAR64LONG16 *block) in do_R01() argument 118 nR0(a,b,c,d,e, 0); nR0(e,a,b,c,d, 1); nR0(d,e,a,b,c, 2); in do_R01() 119 nR0(c,d,e,a,b, 3); nR0(b,c,d,e,a, 4); nR0(a,b,c,d,e, 5); in do_R01() 120 nR0(e,a,b,c,d, 6); nR0(d,e,a,b,c, 7); nR0(c,d,e,a,b, 8); in do_R01() 121 nR0(b,c,d,e,a, 9); nR0(a,b,c,d,e,10); nR0(e,a,b,c,d,11); in do_R01() 122 nR0(d,e,a,b,c,12); nR0(c,d,e,a,b,13); nR0(b,c,d,e,a,14); in do_R01() [all …]
|
/titanic_41/usr/src/pkg/manifests/ |
H A D | system-kernel.man9e.inc | 17 file path=usr/share/man/man9e/Intro.9e 18 file path=usr/share/man/man9e/_fini.9e 19 file path=usr/share/man/man9e/aread.9e 20 file path=usr/share/man/man9e/attach.9e 21 file path=usr/share/man/man9e/awrite.9e 22 file path=usr/share/man/man9e/chpoll.9e 23 file path=usr/share/man/man9e/close.9e 24 file path=usr/share/man/man9e/csx_event_handler.9e 25 file path=usr/share/man/man9e/detach.9e 26 file path=usr/share/man/man9e/devmap.9e [all …]
|
/titanic_41/usr/src/lib/gss_mechs/mech_krb5/mech/ |
H A D | error_map.h | 41 struct gsserrmap__element *e, *e_next; in gsserrmap_destroy() local 44 for (e = head->first; e; e = e_next) { in gsserrmap_destroy() 45 e_next = e->next; in gsserrmap_destroy() 47 (*free_key)(e->key); in gsserrmap_destroy() 49 (*free_value)(e->value); in gsserrmap_destroy() 50 free(e); in gsserrmap_destroy() 58 struct gsserrmap__element *e; in gsserrmap__find_node() local 59 for (e = head->first; e; e = e->next) in gsserrmap__find_node() 60 if (compare_OM_uint32 (key, e->key) == 0) in gsserrmap__find_node() 61 return e; in gsserrmap__find_node() [all …]
|
/titanic_41/usr/src/lib/libast/common/misc/ |
H A D | ftwalk.c | 56 register FTSENT* e; in ftwalk() local 81 if (!(e = newof(0, FTSENT, 1, ns))) in ftwalk() 83 e->fts_accpath = e->fts_name = e->fts_path = strcpy((char*)(e + 1), path); in ftwalk() 84 e->fts_namelen = e->fts_pathlen = ns; in ftwalk() 85 e->fts_info = FTS_NS; in ftwalk() 86 e->parent = e; in ftwalk() 87 e->parent->link = e; in ftwalk() 88 rv = (*userf)((Ftw_t*)e); in ftwalk() 89 free(e); in ftwalk() 93 if (children && (e = fts_children(f, 0))) in ftwalk() [all …]
|
/titanic_41/usr/src/tools/protocmp/ |
H A D | proto_list.c | 169 parse_line(char **v, elem *e) in parse_line() argument 171 e->flag = 0; in parse_line() 172 e->pkgs = NULL; in parse_line() 173 e->arch = P_ISA; in parse_line() 174 (void) strcpy(e->name, v[NAME]); in parse_line() 175 e->perm = strtol(v[PERM], NULL, 8); in parse_line() 176 (void) strcpy(e->owner, v[OWNR]); in parse_line() 177 (void) strcpy(e->group, v[GRP]); in parse_line() 178 e->inode = atoi(v[INO]); in parse_line() 179 e->ref_cnt = atoi(v[LCNT]); in parse_line() [all …]
|
H A D | protodir.c | 90 static elem *e = NULL; in parse_proto_line() local 93 if (!e) in parse_proto_line() 94 e = (elem *)calloc(1, sizeof (elem)); in parse_proto_line() 96 e->flag = 0; in parse_proto_line() 103 e->file_type = type[0]; in parse_proto_line() 123 e->symsrc = NULL; in parse_proto_line() 140 if (e->file_type == SYM_LINK_T || e->file_type == LINK_T) { in parse_proto_line() 142 e->symsrc = strdup(src); in parse_proto_line() 143 } else if (e->file_type == EDIT_T) { in parse_proto_line() 154 (void) strcat(strcat(strcpy(e->name, basedir), "/"), file); in parse_proto_line() [all …]
|
/titanic_41/usr/src/uts/sun4u/starfire/sys/ |
H A D | idn_sigb.h | 269 #define SSIEVENT_GET_STATE(s, e) \ argument 270 ((s).idn_evt[e].e_event ? _SSIEVENT_VALUE(e) : 0) 271 #define SSIEVENT_CLR_STATE(s, e) \ argument 272 ((s).idn_evt[e].e_event = 0) 273 #define SSIEVENT_SET_STATE(s, e) \ argument 274 ((s).idn_evt[e].e_event = _SSIEVENT_VALUE(e)) 283 #define SSIEVENT_GET_HANDLED(s, e) \ argument 284 ((s).idn_evt[e].e_handled ? _SSIEVENT_VALUE(e) : 0) 285 #define SSIEVENT_CLR_HANDLED(s, e) \ argument 286 ((s).idn_evt[e].e_handled = 0) [all …]
|
/titanic_41/usr/src/cmd/fs.d/nfs/mountd/ |
H A D | hashset.c | 137 ENTRY *e; in h_get() local 139 for (e = h->h_table[i]; e; e = e->e_next) in h_get() 140 if (e->e_hash == hash && h->h_equal(e->e_key, key)) in h_get() 141 return (e->e_key); in h_get() 162 ENTRY *e, *next; in rehash() local 164 for (e = h->h_table[i]; e; e = next) { in rehash() 165 uint_t k = e->e_hash % newtabSize; in rehash() 167 next = (ENTRY *) e->e_next; in rehash() 168 e->e_next = (ENTRY *) newtab[k]; in rehash() 169 newtab[k] = e; in rehash() [all …]
|
/titanic_41/usr/src/cmd/svc/startd/ |
H A D | protocol.c | 102 graph_protocol_event_t *e; in graph_event_enqueue() local 104 e = startd_zalloc(sizeof (graph_protocol_event_t)); in graph_event_enqueue() 108 e->gpe_inst = startd_alloc(size); in graph_event_enqueue() 109 e->gpe_inst_sz = size; in graph_event_enqueue() 110 (void) strlcpy(e->gpe_inst, inst, size); in graph_event_enqueue() 112 e->gpe_type = event; in graph_event_enqueue() 113 e->gpe_data = data; in graph_event_enqueue() 115 (void) pthread_mutex_init(&e->gpe_lock, &mutex_attrs); in graph_event_enqueue() 118 uu_list_node_init(e, &e->gpe_link, graph_protocol_event_queue_pool); in graph_event_enqueue() 119 if (uu_list_insert_before(graph_queue->gpeq_event_list, NULL, e) == -1) in graph_event_enqueue() [all …]
|
/titanic_41/usr/src/lib/libxcurses/src/libc/mks/ |
H A D | getsyntx.c | 54 char const *e; in getsyntx() local 56 if ((e = __m_getenv("VARIANTS")) == NULL || *e == '\0') in getsyntx() 57 e = var; in getsyntx() 58 else if (strlen(e) != 13) { in getsyntx() 62 v.backslash = e[0]; in getsyntx() 63 v.right_bracket = e[1]; in getsyntx() 64 v.left_bracket = e[2]; in getsyntx() 65 v.right_brace = e[3]; in getsyntx() 66 v.left_brace = e[4]; in getsyntx() 67 v.circumflex = e[5]; in getsyntx() [all …]
|