/titanic_51/usr/src/lib/libc/amd64/gen/ |
H A D | memcmp.s | 73 sub %ecx, %eax 107 sub $8, %rdx 142 sub (%rdi), %rax 143 sub 8 (%rdi), %r8 144 sub 16 (%rdi), %r9 145 sub 24 (%rdi), %r10 152 sub $32, %rdx 181 sub $8, %r8d 187 sub %ecx, %eax 215 sub ( [all...] |
H A D | strcmp.s | 79 psubb %xmm0, %xmm1 /* packed sub of comparison results*/ 81 sub $0xffff, %edx /* if first 16 bytes are same, edx == 0xffff */ 84 sub $16, %r11 111 sub %rax, %r9 127 psubb %xmm0, %xmm1 /* packed sub of comparison results*/ 131 sub %r9d, %edx 155 sub $0xffff, %edx 159 sub $16, %r11 170 sub $0xffff, %edx 173 sub [all...] |
H A D | strcpy.s | 82 sub $16, %r8 118 sub %rdx, %r9 /* src offset - dest offset */ 149 sub $16, %r8 164 sub $16, %r8 176 sub $16, %r8 188 sub $16, %r8 201 sub $16, %r8 239 sub $16, %r8 260 sub $16, %r8 284 sub [all...] |
/titanic_51/usr/src/contrib/ast/src/lib/libast/regex/ |
H A D | regsubcomp.c | 111 register regsub_t* sub; in regsubcomp() local 132 if (!(sub = (regsub_t*)alloc(p->env->disc, 0, sizeof(regsub_t) + strlen(s))) || !(sub->re_ops = (regsubop_t*)alloc(p->env->disc, 0, (nops = 8) * sizeof(regsubop_t)))) in regsubcomp() 134 if (sub) in regsubcomp() 135 alloc(p->env->disc, sub, 0); in regsubcomp() 139 sub->re_buf = sub->re_end = 0; in regsubcomp() 140 p->re_sub = sub; in regsubcomp() 141 p->env->sub = 1; in regsubcomp() 142 op = sub in regsubcomp() 362 regsub_t* sub; regsubfree() local [all...] |
/titanic_51/usr/src/lib/libast/common/regex/ |
H A D | regsubcomp.c | 111 register regsub_t* sub; in regsubcomp() local 132 …if (!(sub = (regsub_t*)alloc(p->env->disc, 0, sizeof(regsub_t) + strlen(s))) || !(sub->re_ops = (r… in regsubcomp() 134 if (sub) in regsubcomp() 135 alloc(p->env->disc, sub, 0); in regsubcomp() 139 sub->re_buf = sub->re_end = 0; in regsubcomp() 140 p->re_sub = sub; in regsubcomp() 141 p->env->sub = 1; in regsubcomp() 142 op = sub->re_ops; in regsubcomp() 156 t = sub->re_rhs; in regsubcomp() 289 if ((op->len = (t - sub->re_rhs) - op->off) && (n = ++op - sub->re_ops) >= nops) in regsubcomp() [all …]
|
/titanic_51/usr/src/contrib/ast/src/lib/libast/string/ |
H A D | strmatch.c | 73 * match group begin offsets are even elements of sub 74 * match group end offsets are odd elements of sub 75 * the matched string is from s+sub[0] up to but not 76 * including s+sub[1] 80 strgrpmatch(const char* b, const char* p, ssize_t* sub, int n, register int flags) in strgrpmatch() argument 99 if (sub && n > 0) in strgrpmatch() 103 int* subi = (int*)sub; in strgrpmatch() 108 sub[0] = sub[1] = 0; in strgrpmatch() 133 if (!sub || in strgrpmatch() 204 strgrpmatch(const char * b,const char * p,int * sub,int n,int flags) strgrpmatch() argument [all...] |
H A D | ccmapid.c | 142 ssize_t sub[2]; in ccmapid() local 147 if (strgrpmatch(name, mp->match, sub, elementsof(sub) / 2, STR_MAXIMAL|STR_LEFT|STR_ICASE)) in ccmapid() 149 if (!(c = name[sub[1]])) in ccmapid() 151 if (sub[1] > n && !isalpha(c)) in ccmapid() 153 n = sub[1]; in ccmapid()
|
/titanic_51/usr/src/lib/libast/common/string/ |
H A D | strmatch.c | 78 strgrpmatch(const char* b, const char* p, int* sub, int n, register int flags) in strgrpmatch() argument 97 if (sub && n > 0) in strgrpmatch() 98 sub[0] = sub[1] = 0; in strgrpmatch() 122 if (!sub || n <= 0) in strgrpmatch() 134 if (!sub || n <= 0) in strgrpmatch() 137 end = sub + n * 2; in strgrpmatch() 138 for (n = 0; sub < end && n <= i; n++) in strgrpmatch() 140 *sub++ = matchstate.match[n].rm_so; in strgrpmatch() 141 *sub++ = matchstate.match[n].rm_eo; in strgrpmatch()
|
H A D | ccmapid.c | 142 int sub[2]; in ccmapid() local 147 if (strgrpmatch(name, mp->match, sub, elementsof(sub) / 2, STR_MAXIMAL|STR_LEFT|STR_ICASE)) in ccmapid() 149 if (!(c = name[sub[1]])) in ccmapid() 151 if (sub[1] > n && !isalpha(c)) in ccmapid() 153 n = sub[1]; in ccmapid()
|
/titanic_51/usr/src/lib/libast/common/comp/ |
H A D | regcmp.c | 40 unsigned char sub[SUB]; member 74 unsigned char sub[SUB]; in regcmp() local 138 memset(sub, 0, sizeof(sub)); in regcmp() 141 sub[j] = paren[i] + 1; in regcmp() 178 memcpy(re->sub, sub, (nsub + 1) * sizeof(sub[0])); in regcmp() 189 char* sub[SUB + 1]; in regex() local 197 sub[n] = va_arg(ap, char*); in regex() 202 if (i = re->sub[n]) in regex() 206 strncpy(sub[n], subject + match[i].rm_so, k); in regex() 207 *(sub[n] + k) = 0; in regex()
|
/titanic_51/usr/src/contrib/ast/src/lib/libast/comp/ |
H A D | regcmp.c | 40 unsigned char sub[SUB]; member 75 unsigned char sub[SUB]; in regcmp() local 142 memset(sub, 0, sizeof(sub)); in regcmp() 145 sub[j] = paren[i] + 1; in regcmp() 185 memcpy(re->sub, sub, (nsub + 1) * sizeof(sub[0])); in regcmp() 196 char* sub[SUB + 1]; in regex() local 207 sub[ in regex() [all...] |
/titanic_51/usr/src/lib/libmvec/common/vis/ |
H A D | __vrsqrtf.S | 423 sub %l0,%l7,%l7 ! (5_0) iexp1 = 0x3f - iexp1; 429 sub %l0,%i3,%o0 ! (4_0) iexp0 = 0x3f - iexp0; 471 sub %l0,%i1,%i1 ! (1_0) iexp1 = 0x3f - iexp1; 474 sub %l0,%i3,%g5 ! (0_0) iexp0 = 0x3f - iexp0; 533 sub %l0,%o3,%o3 ! (3_0) iexp1 = 0x3f - iexp1; 537 sub %l0,%i3,%g5 ! (2_0) iexp0 = 0x3f - iexp0; 605 sub %l0,%l7,%l7 ! (5_0) iexp1 = 0x3f - iexp1; 615 sub %l0,%i3,%o0 ! (4_0) iexp0 = 0x3f - iexp0; 641 sub counter,6,counter ! counter 687 sub [all...] |
H A D | __vrsqrt.S | 250 sub %g0,%o7,%o7 ! (6_1) iexp = -iexp; 275 sub %g0,%o7,%o7 ! (0_0) iexp = -iexp; 323 sub %g0,%o7,%o7 ! (1_0) iexp = -iexp; 362 sub %g0,%o7,%o7 ! (2_0) iexp = -iexp; 406 sub %g0,%o7,%o7 ! (3_0) iexp = -iexp; 453 sub %g0,%o7,%o7 ! (4_0) iexp = -iexp; 485 sub %g0,%o7,%o7 ! (5_0) iexp = -iexp; 523 sub counter,7,counter ! counter 569 sub %g0,%o7,%o7 ! (6_1) iexp = -iexp; 613 sub [all...] |
/titanic_51/usr/src/lib/libc/capabilities/sun4u-us3/common/ |
H A D | memcmp.s | 78 sub %o4, 8, %o4 ! o4 = -(num of bytes to dbl align) 80 sub %o3, %o4, %o3 ! o3 = 8 + (num of bytes to dbl align) 99 sub %g0, %g0, %o0 103 sub %o4, %o5, %o0 ! return(*s1 - *s2) 119 sub %o4, 8, %o4 134 sub %o1, %o0, %o1 ! o1 gets the difference 139 sub %o2, 8, %o2 143 sub %o1, %o0, %o1 ! o1 gets the difference 157 sub %g0, %g0, %o0 ! strings compare equal 163 sub [all...] |
/titanic_51/usr/src/uts/common/io/softmac/ |
H A D | softmac_capab.c | 516 dl_capability_sub_t *sub, *end; in i_capab_ack() local 532 sub = (dl_capability_sub_t *)((caddr_t)cap + cap->dl_sub_offset); in i_capab_ack() 534 - sizeof (*sub)); in i_capab_ack() 535 for (; (sub <= end) && (err == 0); ) { in i_capab_ack() 536 switch (sub->dl_cap) { in i_capab_ack() 538 err = i_capab_id_ack(mp, sub, q, op, arg); in i_capab_ack() 541 err = i_capab_sub_ack(mp, sub, q, op, arg); in i_capab_ack() 544 sub = (dl_capability_sub_t *)((caddr_t)sub + sizeof (*sub) in i_capab_ack() 592 i_capab_sub_ack(mblk_t * mp,dl_capability_sub_t * sub,queue_t * q,softmac_capab_ops_t * op,void * arg) i_capab_sub_ack() argument [all...] |
/titanic_51/usr/src/cmd/sgs/tools/ |
H A D | lint_hdr.pl | 49 # The -s option specifies that this is a sub-header, used when 63 use vars qw($sub); 68 $sub = 0; 73 $sub = 1; 88 if ($sub) {
|
/titanic_51/usr/src/lib/libc/capabilities/sun4u/common/ |
H A D | memcmp.s | 71 sub %o4, 8, %o4 ! o4 = -(num of bytes to dbl align) 73 sub %o3, %o4, %o3 ! o3 = 8 + (num of bytes to dbl align) 93 sub %g0, %g0, %o0 97 sub %o4, %o5, %o0 ! return(*s1 - *s2) 117 sub %o4, 8, %o4 130 sub %o1, %o0, %o1 ! o1 gets the difference 135 sub %o2, 8, %o2 139 sub %o1, %o0, %o1 ! o1 gets the difference 153 sub %g0, %g0, %o0 ! strings compare equal 159 sub [all...] |
/titanic_51/usr/src/lib/libc/sparc/gen/ |
H A D | _stack_grow.s | 66 sub %o1, STACK_BIAS, %o3 68 sub %o0, %o3, %o4 87 sub %sp, %o3, %o4 91 sub %o3, STACK_ALIGN, %sp
|
H A D | memcmp.s | 62 sub %o1, %o0, %o1 138 sub %o1, %o2, %o0 ! delay slot 143 sub %o4, %o5, %o0 ! delay slot, return(*s1 - *s2) 160 sub %o1, %o0, %o1 171 sub %o1, 1, %o1 ! used 3 bytes of the last word read 183 sub %o1, %o0, %o1 194 sub %o1, 3, %o1 ! used 1 byte of the last word read 205 sub %o1, %o0, %o1 216 sub %o1, 2, %o1 ! only used half of the last read word 221 sub [all...] |
/titanic_51/usr/src/cmd/cmd-inet/usr.bin/pppdump/ |
H A D | zlib.c | 2018 * establish sub-heaps of increasing lengths: 2759 } sub; /* submode */ member 2872 if (((z->state->sub.method = NEXTBYTE) & 0xf) != DEFLATED) 2876 z->state->sub.marker = 5; /* can't try inflateSync */ 2879 if ((z->state->sub.method >> 4) + 8 > z->state->wbits) 2883 z->state->sub.marker = 5; /* can't try inflateSync */ 2893 z->state->sub.marker = 5; /* can't try inflateSync */ 2896 if (((z->state->sub.method << 8) + b) % 31) 2900 z->state->sub.marker = 5; /* can't try inflateSync */ 2912 z->state->sub 3080 } sub; /* submode */ global() member 4111 } sub; /* submode */ global() member [all...] |
/titanic_51/usr/src/contrib/ast/src/cmd/ksh93/sh/ |
H A D | arith.c | 63 register char *sub=0, *cp=(char*)np; in scope() local 84 Fun = sh_arith(shp,sub=stakptr(offset)); in scope() 113 sub = nv_refsub(np); in scope() 124 if(sub) in scope() 125 nv_putsub(np,sub,assign==NV_ASSIGN?ARRAY_ADD:0); in scope() 131 if(sub) in scope() 135 sub = cp; in scope() 157 sfprintf(shp->strbuf,"%s%s%c",nv_name(np),sub,0); in scope() 158 sub = sfstruse(shp->strbuf); in scope() 160 if(strchr(sub,' in scope() [all...] |
/titanic_51/usr/src/lib/libm/sparcv9/src/ |
H A D | locallibm.il | 157 sub %o0,0x435,%o0 170 sub %o0,0x3ff,%o0 532 sub %o0,%o1,%o0 541 sub %o0,%o1,%o0 563 sub %o0,%o1,%o0 564 sub %g0,%o0,%o1 575 sub %o0,%o1,%o0 576 sub %g0,%o0,%o1 589 sub %o1,%o0,%o0 599 sub [all...] |
/titanic_51/usr/src/uts/common/io/ppp/spppcomp/ |
H A D | zlib.c | 2848 * the tree, establish sub-heaps of increasing lengths: 3622 } sub; /* submode */ member 3756 if (((z->state->sub.method = NEXTBYTE) & 0xf) != Z_DEFLATED) 3761 z->state->sub.marker = 5; 3764 if ((z->state->sub.method >> 4) + 8 > z->state->wbits) 3769 z->state->sub.marker = 5; 3777 if (((z->state->sub.method << 8) + b) % 31) 3782 z->state->sub.marker = 5; 3795 z->state->sub.check.need = (uLong)NEXTBYTE << 24; 3800 z->state->sub 4181 } sub; /* submode */ global() member 5292 } sub; /* submode */ global() member [all...] |
/titanic_51/usr/src/lib/libeti/menu/common/ |
H A D | menusub.c | 39 set_menu_sub(MENU *m, WINDOW *sub) in set_menu_sub() argument 45 UserSub(m) = sub; in set_menu_sub() 49 UserSub(Dfl_Menu) = sub; in set_menu_sub()
|
/titanic_51/usr/src/boot/sys/sys/ |
H A D | module.h | 139 #define DECLARE_MODULE_WITH_MAXVER(name, data, sub, order, maxver) \ argument 143 SYSINIT(name##module, sub, order, module_register_init, &data); \ 146 #define DECLARE_MODULE(name, data, sub, order) \ argument 147 DECLARE_MODULE_WITH_MAXVER(name, data, sub, order, MODULE_KERNEL_MAXVER) 156 #define DECLARE_MODULE_TIED(name, data, sub, order) \ argument 157 DECLARE_MODULE_WITH_MAXVER(name, data, sub, order, __FreeBSD_version)
|