| /loficc/crypto/usr/src/lib/libc/amd64/gen/ |
| strchr.s | 35 movb (%rdi),%dl / %dl = byte of string 36 cmpb %sil,%dl / find it? 38 testb %dl,%dl / is it null? 41 movb 1(%rdi),%dl / %dl = byte of string 42 cmpb %sil,%dl / find it? 44 testb %dl,%dl / is it null [all...] |
| lexp10.c | 37 #include <sys/dl.h>
|
| llog10.c | 37 #include <sys/dl.h>
|
| memccpy.s | 43 cmpb %dh,%dl / is it the byte sought? 50 cmpb %dh,%dl / is it the byte sought? 57 cmpb %dh,%dl / is it the byte sought? 66 cmpb %dh,%dl / is it the byte sought?
|
| /loficc/crypto/usr/src/cmd/rpld/ |
| dl_error.c | 45 struct dl_descriptor *dl; local 47 dl = _getdesc(fd); 48 if (dl != NULL) { 49 return (dl->error);
|
| dl_attach.c | 46 struct dl_descriptor *dl; local 50 dl = _getdesc(fd); 51 if (dl != NULL) { 54 if (dl->info.state != DL_UNATTACHED) { 55 if (dl->info.style != DL_STYLE_2) 56 dl->error = DLNOTSUPP; 57 else if (dl->info.state == DL_BOUND) 58 dl->error = DLBOUND; 60 dl->error = DLSYSERR; 71 dl->error = DLSYSERR [all...] |
| dl_open.c | 74 struct dl_descriptor *dl; local 86 dl = &_dlfds[fd]; 87 dl->openflag = 1; 113 dl->info.state = iack->dl_current_state; 114 dl->info.max_lsdu = iack->dl_max_sdu; 115 dl->info.min_lsdu = iack->dl_min_sdu; 116 dl->info.addr_len = iack->dl_addr_length; 117 dl->info.mac_type = iack->dl_mac_type; 118 dl->info.class = iack->dl_service_mode; 119 dl->info.style = iack->dl_provider_style 137 struct dl_descriptor *dl; local 150 struct dl_descriptor *dl; local [all...] |
| dl_info.c | 45 struct dl_descriptor *dl; local 49 dl = _getdesc(fd); 50 if (dl != NULL) { 54 *info = dl->info;
|
| dl_unbind.c | 46 struct dl_descriptor *dl; local 51 if ((dl = _getdesc(fd)) == NULL) { 55 if (dl->info.state == DLSTATE_IDLE) { 61 dl->error = DLOUTSTATE; 65 dl->error = DLSYSERR; 71 dl->error = DLSYSERR; 75 dl->error = DLOUTSTATE;
|
| dl_bind.c | 46 struct dl_descriptor *dl; local 50 dl = _getdesc(fd); 51 if (dl != NULL) { 54 if (dl->info.state != DL_UNBOUND) { 55 dl->error = DLBOUND; 77 dl->error = DLSYSERR; 83 dl->error = DLSYSERR; 88 dl->error = prim.error_ack.dl_errno; 90 printf("error=%d\n", dl->error); 93 dl->info.state = DLSTATE_IDLE [all...] |
| dl_close.c | 46 struct dl_descriptor *dl; local 48 if ((dl = _getdesc(fd)) == NULL) { 52 dl->openflag = 0;
|
| dl_addr.c | 47 struct dl_descriptor *dl; local 50 dl = _getdesc(fd); 51 if (dl == NULL) { 58 dl->error = DLSYSERR; 71 dl->error = DLSYSERR; 87 dl->error = DLSYSERR; 101 struct dl_descriptor *dl; local 103 dl = _getdesc(fd); 104 if (dl == NULL) 121 dl->error = DLBADSAP [all...] |
| dl_snd.c | 50 struct dl_descriptor *dl; local 53 if ((dl = _getdesc(fd)) != NULL) { 56 if (dl->info.state != DLSTATE_IDLE) { 57 dl->error = DLUNBOUND; 77 dl->error = DLSYSERR;
|
| dl_rcv.c | 45 struct dl_descriptor *dl; local 49 if ((dl = _getdesc(fd)) != NULL) { 55 if (dl->info.state != DLSTATE_IDLE) { 56 dl->error = DLUNBOUND; 66 dl->error = DLSYSERR; 101 dl->error = DLOUTSTATE;
|
| /loficc/crypto/usr/src/lib/libc/i386/gen/ |
| memccpy.s | 46 movb (%esi),%dl 47 movb %dl,(%eax) / move byte 48 cmpb %dh,%dl / is it the byte sought? 53 movb 1(%esi),%dl 54 movb %dl,1(%eax) / move byte 55 cmpb %dh,%dl / is it the byte sought? 60 movb 2(%esi),%dl 61 movb %dl,2(%eax) / move byte 62 cmpb %dh,%dl / is it the byte sought? 67 movb 3(%esi),%dl [all...] |
| lexp10.c | 37 #include <sys/dl.h>
|
| strncat.s | 126 movb (%eax), %dl / %dl = a byte in (%eax) 128 movb %dl, (%edi) / copy %dl to (%edi) 131 cmpb $0, %dl / compare %dl with a null byte 132 je .L9 / if %dl is a null, goto .L9 140 movb (%eax), %dl / %dl = a byte in (%eax) 142 movb %dl, (%edi) / copy %dl to (%edi [all...] |
| llog10.c | 37 #include <sys/dl.h>
|
| /loficc/crypto/usr/src/lib/libc/port/gen/ |
| lmath.c | 49 #include <sys/dl.h> 53 dl_t dl; member in union:__anon2361 62 return (r.dl); 75 return (r.dl); 91 return (r.dl); 100 return (r.dl);
|
| lconstants.c | 39 #include <sys/dl.h>
|
| /loficc/crypto/usr/src/common/openssl/crypto/bn/ |
| bn_mul.c | 73 cl, which is the common length ( basicall, min(len(a),len(b)) ), and dl, 76 a result array as parameter, it must have the length cl+abs(dl). 82 int cl, int dl) 89 if (dl == 0) 96 if (dl < 0) 99 fprintf(stderr, " bn_sub_part_words %d + %d (dl < 0, c = %d)\n", cl, dl, c); 106 if (++dl >= 0) break; 111 if (++dl >= 0) break; 116 if (++dl >= 0) break [all...] |
| /loficc/crypto/usr/src/uts/common/fs/zfs/ |
| zfs_dir.c | 84 zfs_dirlock_t *dl; local 109 for (dl = dzp->z_dirlocks; dl != NULL; dl = dl->dl_next) 110 if (strcmp(name, dl->dl_name) == 0) 112 if (dl == NULL) { 116 dl = kmem_alloc(sizeof (zfs_dirlock_t), KM_SLEEP); 117 cv_init(&dl->dl_cv, NULL, CV_DEFAULT, NULL); 118 dl->dl_name = name 240 zfs_dirlock_t *dl; local 340 zfs_dirlock_t dl; local 826 zfs_dirlock_t *dl; local [all...] |
| /loficc/crypto/usr/src/lib/libc/sparc/gen/ |
| lexp10.c | 37 #include <sys/dl.h>
|
| /loficc/crypto/usr/src/lib/libc/sparcv9/gen/ |
| lexp10.c | 37 #include <sys/dl.h>
|
| /loficc/crypto/usr/src/cmd/rpcgen/ |
| rpc_cout.c | 301 decl_list *dl; local 310 for (dl = plist->args.decls; dl != NULL; 311 dl = dl->next) 312 print_stat(1, &dl->decl); 381 int size, int flag, decl_list *dl, decl_list *cur) 407 while (cur != dl) { 418 while (cur != dl) { 424 while (cur != dl) { 604 decl_list *dl; local 688 decl_list *dl = def->def.st.decls; local [all...] |