HomeSort by relevance Sort by last modified time
    Searched refs:it (Results 1 - 25 of 606) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/common/openssl/crypto/asn1/
tasn_new.c 67 static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
69 static void asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
71 void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
73 ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it)
76 if (ASN1_item_ex_new(&ret, it) > 0)
83 int ASN1_item_ex_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
85 return asn1_item_ex_combine_new(pval, it, 0);
88 static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
94 const ASN1_AUX *aux = it->funcs;
106 if (it->sname
268 const ASN1_ITEM *it = ASN1_ITEM_ptr(tt->item); local
    [all...]
tasn_fre.c 65 static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int combine);
69 void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it)
71 asn1_item_combine_free(&val, it, 0);
74 void ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
76 asn1_item_combine_free(pval, it, 0);
79 static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int combine)
84 const ASN1_AUX *aux = it->funcs;
89 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && !*pval)
96 switch(it->itype)
100 if (it->templates
    [all...]
x_bignum.c 65 * BIGNUM directly. Currently it ignores the sign which isn't a problem since all
72 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
73 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
75 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it);
76 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
95 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
102 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
105 if(it->size & BN_SENSITIVE) BN_clear_free((BIGNUM *)*pval);
110 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it)
127 int utype, char *free_cont, const ASN1_ITEM *it)
    [all...]
tasn_utl.c 76 int asn1_get_choice_selector(ASN1_VALUE **pval, const ASN1_ITEM *it)
78 int *sel = offset2ptr(*pval, it->utype);
86 int asn1_set_choice_selector(ASN1_VALUE **pval, int value, const ASN1_ITEM *it)
89 sel = offset2ptr(*pval, it->utype);
96 * if it is +1 then the count is incremented. If op is 0 count is
101 int asn1_do_lock(ASN1_VALUE **pval, int op, const ASN1_ITEM *it)
105 if ((it->itype != ASN1_ITYPE_SEQUENCE)
106 && (it->itype != ASN1_ITYPE_NDEF_SEQUENCE))
108 aux = it->funcs;
119 fprintf(stderr, "%s: Reference Count: %d\n", it->sname, *lck)
    [all...]
x_long.c 69 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
70 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
72 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it);
73 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
92 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
94 *(long *)pval = it->size;
98 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
100 *(long *)pval = it->size;
103 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it)
114 if(ltmp == it->size) return -1
    [all...]
tasn_prn.c 70 static int asn1_item_print_nm(BIO *out, void *fld, int indent, const ASN1_ITEM *it, const char *name);
72 int ASN1_item_print(BIO *out, void *fld, int indent, const ASN1_ITEM *it)
74 return asn1_item_print_nm(out, fld, indent, it, it->sname);
77 static int asn1_item_print_nm(BIO *out, void *fld, int indent, const ASN1_ITEM *it, const char *name)
87 switch(it->itype) {
90 if(it->templates)
91 return ASN1_template_print(out, fld, indent, it->templates);
92 return asn1_primitive_print(out, fld, it->utype, indent, name);
100 BIO_printf(out, "%*s%s:EXTERNAL TYPE %s %s\n", indent, "", name, it->sname, fld ? "" : "ABSENT")
    [all...]
tasn_enc.c 68 const ASN1_ITEM *it,
77 const ASN1_ITEM *it, int flags);
84 const ASN1_ITEM *it)
86 return asn1_item_flags_i2d(val, out, it, ASN1_TFLG_NDEF);
89 int ASN1_item_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it)
91 return asn1_item_flags_i2d(val, out, it, 0);
104 const ASN1_ITEM *it, int flags)
110 len = ASN1_item_ex_i2d(&val, NULL, it, -1, flags);
117 ASN1_item_ex_i2d(&val, &p, it, -1, flags);
122 return ASN1_item_ex_i2d(&val, out, it, -1, flags)
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/os/
timer.c 49 * may _only_ be tuned in /etc/system or by patching the kernel binary; it
55 * timer_lock() locks the specified interval timer. It doesn't look at the
56 * ITLK_REMOVE bit; it's up to callers to look at this if they need to
57 * care. p_lock must be held on entry; it may be dropped and reaquired,
60 * Note that timer_create() doesn't call timer_lock(); it creates timers
64 timer_lock(proc_t *p, itimer_t *it)
68 while (it->it_lock & ITLK_LOCKED) {
69 it->it_blockers++;
70 cv_wait(&it->it_cv, &p->p_lock);
71 it->it_blockers--
200 itimer_t **itp, *it; local
381 itimer_t *it = (itimer_t *)sigq->sq_backptr; local
464 itimer_t *it, **itp; local
709 itimer_t *it; local
745 itimer_t *it; local
805 itimer_t *it; local
820 itimer_t *it; local
847 itimer_t *it, **itp; local
891 itimer_t *it, **itp; local
946 itimer_t *it = arg; local
984 itimer_t *it; local
    [all...]
clock_realtime.c 73 itimer_t *it = (itimer_t *)arg; local
74 timeout_id_t *tidp = it->it_arg;
77 proc_t *p = it->it_proc;
83 timer_fire(it);
85 val = &it->it_itime.it_value;
86 interval = &it->it_itime.it_interval;
99 * current time and add the interval; it would lead to
137 *tidp = realtime_timeout(clock_realtime_fire, it, ticks);
148 itimer_t *it = (itimer_t *)arg; local
150 timespec_t *val = &it->it_itime.it_value
    [all...]
clock_highres.c 67 clock_highres_timer_create(itimer_t *it, struct sigevent *ev)
76 it->it_arg = NULL;
80 it->it_arg = kmem_zalloc(sizeof (cyclic_id_t), KM_SLEEP);
88 itimer_t *it = (itimer_t *)arg; local
89 hrtime_t *addr = &it->it_hrtime;
96 timer_fire(it);
100 clock_highres_timer_settime(itimer_t *it, int flags,
103 cyclic_id_t cyc, *cycp = it->it_arg;
150 * side of (a) is minimized when i is small, it is sufficient to show
172 * removed (so it's not possible to run the machine ou
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/sys/
time_impl.h 104 #define ITIMERSPEC32_TO_ITIMERSPEC(it, it32) { \
105 TIMESPEC32_TO_TIMESPEC(&(it)->it_interval, &(it32)->it_interval); \
106 TIMESPEC32_TO_TIMESPEC(&(it)->it_value, &(it32)->it_value); \
109 #define ITIMERSPEC_TO_ITIMERSPEC32(it32, it) { \
110 TIMESPEC_TO_TIMESPEC32(&(it32)->it_interval, &(it)->it_interval); \
111 TIMESPEC_TO_TIMESPEC32(&(it32)->it_value, &(it)->it_value); \
114 #define ITIMERSPEC_OVERFLOW(it) \
115 (TIMESPEC_OVERFLOW(&(it)->it_interval) && \
116 TIMESPEC_OVERFLOW(&(it)->it_value))
  /onnv/onnv-gate/usr/src/lib/libc/amd64/gen/
strchr.s 33 cmpb %sil,%dl / find it?
35 testb %dl,%dl / is it null?
39 cmpb %sil,%dl / find it?
41 testb %dl,%dl / is it null?
45 cmpb %sil,%dl / find it?
47 testb %dl,%dl / is it null?
51 cmpb %sil,%dl / find it?
54 testb %dl,%dl / is it null?
wschr.s 46 cmpl %esi,%edx / find it?
48 testl %edx,%edx / is it null?
52 cmpl %esi,%edx / find it?
54 testl %edx,%edx / is it null?
58 cmpl %esi,%edx / find it?
60 testl %edx,%edx / is it null?
64 cmpl %esi,%edx / find it?
67 testl %edx,%edx / is it null?
  /onnv/onnv-gate/usr/src/stand/
README 27 If you are looking for the rest of what used to be in /usr/src/stand, it's over
  /onnv/onnv-gate/usr/src/lib/libbc/libc/gen/common/
alarm.c 37 struct itimerval it, oitv; local
38 struct itimerval *itp = ⁢
  /onnv/onnv-gate/usr/src/cmd/lms/
ProtocolCompat.cpp 122 ChannelMap::iterator it = _openChannels.find(msg->ConnectionId); local
123 if (it != _openChannels.end()) {
124 _closeMChannel(it->second);
125 _openChannels.erase(it);
137 ChannelMap::iterator it = _openChannels.find(msg->ConnectionId); local
138 if (it != _openChannels.end()) {
139 PRINT("[Compat]sending %d bytes from HECI connection %d to socket %d\n", ntohs(msg->DataLength), msg->ConnectionId, it->second->GetSocket());
140 if (-1 == _send(it->second->GetSocket(), (char *)msg->Data, ntohs(msg->DataLength), error)) {
142 _closeMChannel(it->second);
143 _openChannels.erase(it);
    [all...]
Protocol.cpp 168 ChannelMap::iterator it = _openChannels.begin(); local
169 for (; it != _openChannels.end(); it++) {
170 if (it->second->GetSocket() == s) {
171 return it->second;
175 ChannelMap::iterator it = _openChannels.find(s); local
176 if (it != _openChannels.end()) {
177 return it->second;
210 ChannelMap::iterator it = _openChannels.begin(); local
212 for (; it != _openChannels.end(); it++)
222 PortMap::iterator it = _openPorts.begin(); local
279 PortMap::iterator it = _openPorts.find(port); local
421 PortMap::iterator it = _openPorts.find(port); local
497 PortMap::iterator it = _openPorts.begin(); local
513 ChannelMap::iterator it = _openChannels.begin(); local
563 PortMap::iterator it = _openPorts.begin(); local
673 ChannelMap::iterator it = _openChannels.begin(); local
705 PortMap::iterator it = _openPorts.find(p->GetPort()); local
936 ChannelMap::iterator it = _openChannels.find(chOpenSuccMsg->RecipientChannel); local
986 ChannelMap::iterator it = _openChannels.find(channelWindowMessage->RecipientChannel); local
1158 PortMap::iterator it = _openPorts.find(tcpFwdCnclMsg->Port); local
1293 ChannelMap::iterator it = _openChannels.find(chFailMsg->RecipientChannel); local
1310 ChannelMap::iterator it = _openChannels.find(chClMsg->RecipientChannel); local
1343 ChannelMap::iterator it = _openChannels.find(chDMsg->RecipientChannel); local
1550 std::list<std::string>::const_iterator it = _AMTDNSSuffixes.begin(); local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/
testlib.pm 30 After an extension has been built and before it is installed it may be
31 desirable to test it bypassing C<make test>. By adding
  /onnv/onnv-gate/usr/src/cmd/ypcmd/
getlist.c 51 listofnames *it; local
59 it = (listofnames *) malloc(sizeof (listofnames));
60 if (it == NULL) {
64 it->name = copy;
65 it->nextname = NULL;
66 return (it);
  /onnv/onnv-gate/usr/src/uts/sun4v/cpu/
niagara2.c 368 mem_node_iterator_t *it = cookie; local
373 if (it == ((mem_node_iterator_t *)(-1))) {
375 } else if (it != NULL) {
376 ASSERT(pfn >= it->mi_mblock_base && pfn <= it->mi_mblock_end);
377 pfn = pfn + it->mi_ra_to_pa;
461 (((pfn) & it->mi_mnode_pfn_mask) >> it->mi_mnode_pfn_shift)
468 mem_node_iterator_t *it = cookie; local
475 ASSERT(pfn >= it->mi_mblock_base && pfn <= it->mi_mblock_end)
653 mem_node_iterator_t it; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libc/i386/gen/
wschr.s 47 cmpl %ecx,%edx / find it?
49 testl %edx,%edx / is it null?
53 cmpl %ecx,%edx / find it?
55 testl %edx,%edx / is it null?
59 cmpl %ecx,%edx / find it?
61 testl %edx,%edx / is it null?
65 cmpl %ecx,%edx / find it?
68 testl %edx,%edx / is it null?
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/funcs/
tst.chill.ksh 40 * NOTES: This test does no verification - it's not possible. So,
41 * we just run this and make sure it runs.
  /onnv/onnv-gate/usr/src/cmd/lp/filter/postscript/postprint/
README 59 procedures l and L by '1 sub'. It's a little tricky, but I've tried it and
60 it does work.
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Attribute/Handlers/demo/
demo4.pl 9 sub foo : Purpose(to foo all data before barring it) { }
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/MakeMaker/
bytes.pm 31 bytes' in it won't even compile on 5.5.X. Since bytes is a lexical
32 pragma and must be used at compile time we can't simply wrap it in
36 which works just like it when bytes.pm exists and everywhere else it

Completed in 959 milliseconds

1 2 3 4 5 6 7 8 91011>>