/external/openssl/crypto/asn1/ |
D | asn_moid.c | 115 char *ln, *ostr, *p, *lntmp; in do_create() local 119 ln = name; in do_create() 124 ln = NULL; in do_create() 131 nid = OBJ_create(ostr, name, ln); in do_create() 138 ln = value; in do_create() 139 while(isspace((unsigned char)*ln)) ln++; in do_create() 143 if (p == ln) in do_create() 148 lntmp = OPENSSL_malloc((p - ln) + 1); in do_create() 151 memcpy(lntmp, ln, p - ln); in do_create() 152 lntmp[p - ln] = 0; in do_create() [all …]
|
D | a_object.c | 316 ret->ln=NULL; in c2i_ASN1_OBJECT() 344 ret->ln=NULL; in ASN1_OBJECT_new() 356 if (a->ln != NULL) OPENSSL_free((void *)a->ln); in ASN1_OBJECT_free() 358 a->sn=a->ln=NULL; in ASN1_OBJECT_free() 371 const char *sn, const char *ln) in ASN1_OBJECT_create() argument 376 o.ln=ln; in ASN1_OBJECT_create()
|
D | tasn_prn.c | 186 char objbuf[80], *ln; in asn1_primitive_print() local 187 ln = OBJ_nid2ln(OBJ_obj2nid(fld)); in asn1_primitive_print() 188 if(!ln) ln = ""; in asn1_primitive_print() 190 BIO_printf(out, "%*s%s:%s (%s)", indent, "", "OBJECT", ln, objbuf); in asn1_primitive_print()
|
/external/openssl/crypto/objects/ |
D | obj_dat.pl | 73 $ln{$1}=$d; 102 $ln=defined($ln{$nid{$i}})?"$ln{$nid{$i}}":"NULL"; 105 $sn=$ln; 106 $sn{$nid{$i}} = $ln; 109 if ($ln eq "NULL") { 110 $ln=$sn; 111 $ln{$nid{$i}} = $sn; 116 $out.=","."\"$ln\""; 154 @a=grep(defined($ln{$nid{$_}}),0 .. $n); 155 foreach (sort { $ln{$nid{$a}} cmp $ln{$nid{$b}} } @a) [all …]
|
D | obj_lib.c | 69 char *ln=NULL; in OBJ_dup() local 89 r->ln=r->sn=NULL; in OBJ_dup() 90 if (o->ln != NULL) in OBJ_dup() 92 i=strlen(o->ln)+1; in OBJ_dup() 93 r->ln=ln=OPENSSL_malloc(i); in OBJ_dup() 94 if (r->ln == NULL) goto err; in OBJ_dup() 95 memcpy(ln,o->ln,i); in OBJ_dup() 114 if (ln != NULL) OPENSSL_free(ln); in OBJ_dup()
|
D | objects.pl | 73 if ($Cname ne "" && defined($ln{$module.$Cname})) 74 …{ die "objects.txt:$o:There's already an object with long name ",$ln{$module.$Cname}," on line ",$… 89 if ($Cname ne "" && defined($ln{$module.$Cname})) 90 …{ die "objects.txt:$o:There's already an object with long name ",$ln{$module.$Cname}," on line ",$… 98 $ln{$Cname} = $myln; 194 print OUT "#define LN_",$Cname,"\t\t\"",$ln{$Cname},"\"\n" if $ln{$Cname} ne "";
|
D | obj_dat.c | 110 return(strcmp((*ap)->ln,(*bp)->ln)); in ln_cmp() 135 ret=lh_strhash(a->ln); in add_hash() 172 if (a->ln == NULL) return(-1); in add_cmp() 173 else if (b->ln == NULL) return(1); in add_cmp() 174 else return(strcmp(a->ln,b->ln)); in add_cmp() 246 if (o->ln != NULL) in OBJ_add_object() 350 return(nid_objs[n].ln); in OBJ_nid2ln() 361 return(adp->obj->ln); in OBJ_nid2ln() 613 o.ln=s; in OBJ_ln2nid() 759 int OBJ_create(const char *oid, const char *sn, const char *ln) in OBJ_create() argument [all …]
|
/external/dosfstools/ |
D | Makefile | 54 ln -sf dosfsck $(DESTDIR)/$(SBINDIR)/fsck.msdos 55 ln -sf dosfsck $(DESTDIR)/$(SBINDIR)/fsck.vfat 56 ln -sf mkdosfs $(DESTDIR)/$(SBINDIR)/mkfs.msdos 57 ln -sf mkdosfs $(DESTDIR)/$(SBINDIR)/mkfs.vfat 67 ln -sf dosfsck.8 $(DESTDIR)/$(MANDIR)/man8/fsck.msdos.8 68 ln -sf dosfsck.8 $(DESTDIR)/$(MANDIR)/man8/fsck.vfat.8 69 ln -sf mkdosfs.8 $(DESTDIR)/$(MANDIR)/man8/mkfs.msdos.8 70 ln -sf mkdosfs.8 $(DESTDIR)/$(MANDIR)/man8/mkfs.vfat.8
|
/external/openssl/crypto/bn/ |
D | bn_sqr.c | 210 BN_ULONG ln,lo,*p; in bn_sqr_recursive() local 278 ln=(lo+c1)&BN_MASK2; in bn_sqr_recursive() 279 *p=ln; in bn_sqr_recursive() 283 if (ln < (BN_ULONG)c1) in bn_sqr_recursive() 288 ln=(lo+1)&BN_MASK2; in bn_sqr_recursive() 289 *p=ln; in bn_sqr_recursive() 290 } while (ln == 0); in bn_sqr_recursive()
|
D | bn_mul.c | 399 BN_ULONG ln,lo,*p; in bn_mul_recursive() local 530 ln=(lo+c1)&BN_MASK2; in bn_mul_recursive() 531 *p=ln; in bn_mul_recursive() 535 if (ln < (BN_ULONG)c1) in bn_mul_recursive() 540 ln=(lo+1)&BN_MASK2; in bn_mul_recursive() 541 *p=ln; in bn_mul_recursive() 542 } while (ln == 0); in bn_mul_recursive() 555 BN_ULONG ln,lo,*p; in bn_mul_part_recursive() local 709 ln=(lo+c1)&BN_MASK2; in bn_mul_part_recursive() 710 *p=ln; in bn_mul_part_recursive() [all …]
|
/external/openssl/crypto/evp/ |
D | encode.c | 238 int seof= -1,eof=0,rv= -1,ret=0,i,v,tmp,n,ln,tmp2,exp_nl; in EVP_DecodeUpdate() local 243 ln=ctx->line_num; in EVP_DecodeUpdate() 254 if (ln >= 80) { rv= -1; goto end; } in EVP_DecodeUpdate() 264 ln++; in EVP_DecodeUpdate() 284 ln = 0; in EVP_DecodeUpdate() 292 ln=0; in EVP_DecodeUpdate() 354 ctx->line_num=ln; in EVP_DecodeUpdate()
|
/external/libpcap/packaging/ |
D | pcap.spec | 40 ln -sf libpcap.so.0.9.4 libpcap.so.$V1 42 ln -sf libpcap.so.$V1 libpcap.so.$V2 43 ln -sf libpcap.so.$V2 libpcap.so 45 ln -sf libpcap.so.$V1 libpcap.so
|
D | pcap.spec.in | 40 ln -sf libpcap.so.@VERSION@ libpcap.so.$V1 42 ln -sf libpcap.so.$V1 libpcap.so.$V2 43 ln -sf libpcap.so.$V2 libpcap.so 45 ln -sf libpcap.so.$V1 libpcap.so
|
/external/tremor/Tremor/ |
D | floor0.c | 125 void vorbis_lsp_to_curve(ogg_int32_t *curve,int n,int ln, in vorbis_lsp_to_curve() argument 140 ogg_uint32_t imap= (1UL<<31) / ln; in vorbis_lsp_to_curve() 152 ogg_uint32_t nextbark=((tBnyq1<<11)/ln)>>12; in vorbis_lsp_to_curve() 315 if(map+1<ln){ in vorbis_lsp_to_curve() 318 nextbark=((tBnyq1<<11)/ln*(map+1))>>12; in vorbis_lsp_to_curve() 332 if(map>=ln){ in vorbis_lsp_to_curve() 333 map=ln-1; /* guard against the approximation */ in vorbis_lsp_to_curve()
|
/external/e2fsprogs/debian/attic/libs/ |
D | rules | 104 ln -sf e2fslibsg $(debdir)/e2fslibsg-dev/usr/doc/e2fslibsg-dev 106 ln -sf e2fslibsg $(maindir)/usr/doc/e2fsprogs 108 ln -sf comerr$(COMERR_MAJOR)g $(debdir)/comerrg-dev/usr/doc/comerrg-dev 110 ln -sf ss$(SS_MAJOR)g $(debdir)/ssg-dev/usr/doc/ssg-dev 142 ln -s e2fsck.8 $(maindir)/usr/man/man8/fsck.ext2.8 143 ln -s mke2fs.8 $(maindir)/usr/man/man8/mkfs.ext2.8
|
/external/icu4c/stubdata/ |
D | Makefile.in | 91 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(SO_TARGET)) && ln -s $(notdir $(FINAL_SO_TARGET)) $(not… 93 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(MIDDLE_SO_TARGET)) && ln -s $(notdir $(FINAL_SO_TARGET)… 99 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(IMPORT_LIB)) && ln -s $(notdir $(FINAL_IMPORT_LIB)) $(n… 102 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(MIDDLE_IMPORT_LIB)) && ln -s $(notdir $(FINAL_IMPORT_LI…
|
D | Makefile.org | 91 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(SO_TARGET)) && ln -s $(notdir $(FINAL_SO_TARGET)) $(not… 93 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(MIDDLE_SO_TARGET)) && ln -s $(notdir $(FINAL_SO_TARGET)… 99 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(IMPORT_LIB)) && ln -s $(notdir $(FINAL_IMPORT_LIB)) $(n… 102 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(MIDDLE_IMPORT_LIB)) && ln -s $(notdir $(FINAL_IMPORT_LI…
|
/external/icu4c/io/ |
D | Makefile.in | 105 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(SO_TARGET)) && ln -s $(notdir $(FINAL_SO_TARGET)) $(not… 107 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(MIDDLE_SO_TARGET)) && ln -s $(notdir $(FINAL_SO_TARGET)… 113 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(IMPORT_LIB)) && ln -s $(notdir $(FINAL_IMPORT_LIB)) $(n… 116 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(MIDDLE_IMPORT_LIB)) && ln -s $(notdir $(FINAL_IMPORT_LI…
|
D | Makefile | 105 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(SO_TARGET)) && ln -s $(notdir $(FINAL_SO_TARGET)) $(not… 107 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(MIDDLE_SO_TARGET)) && ln -s $(notdir $(FINAL_SO_TARGET)… 113 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(IMPORT_LIB)) && ln -s $(notdir $(FINAL_IMPORT_LIB)) $(n… 116 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(MIDDLE_IMPORT_LIB)) && ln -s $(notdir $(FINAL_IMPORT_LI…
|
/external/icu4c/layoutex/ |
D | Makefile | 106 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(SO_TARGET)) && ln -s $(notdir $(FINAL_SO_TARGET)) $(not… 108 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(MIDDLE_SO_TARGET)) && ln -s $(notdir $(FINAL_SO_TARGET)… 114 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(IMPORT_LIB)) && ln -s $(notdir $(FINAL_IMPORT_LIB)) $(n… 117 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(MIDDLE_IMPORT_LIB)) && ln -s $(notdir $(FINAL_IMPORT_LI…
|
D | Makefile.in | 106 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(SO_TARGET)) && ln -s $(notdir $(FINAL_SO_TARGET)) $(not… 108 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(MIDDLE_SO_TARGET)) && ln -s $(notdir $(FINAL_SO_TARGET)… 114 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(IMPORT_LIB)) && ln -s $(notdir $(FINAL_IMPORT_LIB)) $(n… 117 …cd $(DESTDIR)$(libdir) && $(RM) $(notdir $(MIDDLE_IMPORT_LIB)) && ln -s $(notdir $(FINAL_IMPORT_LI…
|
/external/dropbear/debian/ |
D | rules | 78 ln -s /var/log/dropbear '$(DIR)'/etc/dropbear/log/main 79 ln -s /var/run/dropbear '$(DIR)'/etc/dropbear/supervise 80 ln -s /var/run/dropbear.log '$(DIR)'/etc/dropbear/log/supervise 92 test -r changelog || ln -s CHANGES changelog
|
/external/icu4c/tools/pkgdata/ |
D | pkgtypes.c | 29 int32_t ln = 0; in pkg_writeCharListWrap() local 56 ln += (int32_t)uprv_strlen(l->str); in pkg_writeCharListWrap() 61 if(ln > 60 && brk) { in pkg_writeCharListWrap() 62 ln = 0; in pkg_writeCharListWrap()
|
/external/zlib/ |
D | Makefile.in | 83 ln -s $@ $(SHAREDLIB) 84 ln -s $@ $(SHAREDLIBM) 104 ln -s $(SHAREDLIBV) $(SHAREDLIB); \ 105 ln -s $(SHAREDLIBV) $(SHAREDLIBM); \
|
/external/elfutils/libasm/ |
D | Makefile.am | 60 ln -fs $@ $@.$(VERSION) 74 ln -fs libasm-$(PACKAGE_VERSION).so $(DESTDIR)$(libdir)/libasm.so.$(VERSION) 75 ln -fs libasm.so.$(VERSION) $(DESTDIR)$(libdir)/libasm.so
|