/third_party/python/Lib/test/decimaltestdata/ |
D | ln.decTest | 2 -- ln.decTest -- decimal natural logarithm -- 30 lnxs001 ln 0 -> -Infinity 31 lnxs002 ln 1.000 -> 0 32 lnxs003 ln 2.71828183 -> 1.00000000 Inexact Rounded 33 lnxs004 ln 10 -> 2.30258509 Inexact Rounded 34 lnxs005 ln +Infinity -> Infinity 39 lnx0001 ln 0 -> -Infinity 40 lnx0002 ln 1E-9 -> -20.72326583694641 Inexact Rounded 41 lnx0003 ln 0.0007 -> -7.264430222920869 Inexact Rounded 42 lnx0004 ln 0.1 -> -2.302585092994046 Inexact Rounded [all …]
|
/third_party/pulseaudio/src/modules/ |
D | module-default-device-restore.c | 60 char ln[256] = ""; in load() local 62 if (fgets(ln, sizeof(ln)-1, f)) in load() 63 pa_strip_nl(ln); in load() 66 if (!ln[0]) in load() 68 else if (!pa_namereg_is_valid_name(ln)) in load() 69 pa_log_warn("Invalid sink name: %s", ln); in load() 71 pa_log_info("Restoring default sink '%s'.", ln); in load() 72 pa_core_set_configured_default_sink(u->core, ln); in load() 81 char ln[256] = ""; in load() local 83 if (fgets(ln, sizeof(ln)-1, f)) in load() [all …]
|
D | module-match.c | 108 char ln[256]; in load_rules() local 113 if (!fgets(ln, sizeof(ln), f)) in load_rules() 118 pa_strip_nl(ln); in load_rules() 120 if (ln[0] == '#' || !*ln ) in load_rules() 123 token_end = ln + strcspn(ln, WHITESPACE); in load_rules() 127 if (!*ln) { in load_rules() 178 if (regcomp(®ex, ln, REG_EXTENDED|REG_NOSUB) != 0) { in load_rules()
|
/third_party/openssl/crypto/asn1/ |
D | asn_moid.c | 63 const char *ln, *ostr, *p; in do_create() local 68 ln = name; in do_create() 71 ln = value; in do_create() 77 while (ossl_isspace(*ln)) in do_create() 78 ln++; in do_create() 81 if (p == ln) in do_create() 86 if ((lntmp = OPENSSL_malloc((p - ln) + 1)) == NULL) { in do_create() 90 memcpy(lntmp, ln, p - ln); in do_create() 91 lntmp[p - ln] = '\0'; in do_create() 92 ln = lntmp; in do_create() [all …]
|
/third_party/toybox/tests/ |
D | readlink.test | 18 ln -sf notfound link 22 ln -sf ../../ link 25 ln -sf file link 27 ln -sf . link 29 ln -snf link link 43 ln -s . here && 44 ln -s ./sub dir && 56 ln -sf / link || exit 1 60 rm -f link && ln -sf link link || exit 1 68 ln -s link1 link2 [all …]
|
D | tar.test | 95 ln -s ../name.././.. dir/link 100 ln dir/file dir/hardlink 104 ln dir/link dir/hlink 119 ln -s dir/${LONG:1:96} dir/lshort 120 ln -s dir/${LONG:1:97} dir/llong 124 ln -s $LONG dir/${LONG:5} 129 ln -s file dir/linkok 133 ln -s /dev/null dir/linknull 137 ln -s rel/broken dir/relbrok 141 ln -s /does/not/exist dir/linkabsbrok [all …]
|
/third_party/boost/tools/inspect/ |
D | link_check.cpp | 188 int ln = std::count( contents.begin(), a_what[3].first, '\n' ) + 1; in inspect() local 189 error( library_name, full_path, "Duplicate bookmark: " + bookmark, ln ); in inspect() 258 int ln = std::count( contents_begin, url_start, '\n' ) + 1; in do_url() local 259 error( library_name, source_path, "Empty URL.", ln ); in do_url() 268 int ln = std::count( contents_begin, url_start, '\n' ) + 1; in do_url() local 270 "Invalid URL (invalid ampersand encodings): " + url, ln ); in do_url() 279 int ln = std::count( contents_begin, url_start, '\n' ) + 1; in do_url() local 280 error( library_name, source_path, "Invalid URL: " + decoded_url, ln ); in do_url() 300 int ln = std::count( contents_begin, url_start, '\n' ) + 1; in do_url() local 301 error( library_name, source_path, "External content: " + decoded_url, ln ); in do_url() [all …]
|
/third_party/openssl/crypto/objects/ |
D | obj_dat.pl | 48 my %ln; 76 $ln{$1} = $d; 118 my $ln = defined $ln{$nid{$i}} ? "$ln{$nid{$i}}" : "NULL"; 120 $sn = $ln; 121 $sn{$nid{$i}} = $ln; 123 if ($ln eq "NULL") { 124 $ln = $sn; 125 $ln{$nid{$i}} = $sn; 128 my $out = " {\"$sn\", \"$ln\", NID_$nid{$i}"; 192 @a = grep(defined $ln{$nid{$_}}, 0 .. $n); [all …]
|
D | objects.pl | 93 if ($Cname ne "" && defined($ln{$module.$Cname})) 94 …{ die "objects.txt:$o:There's already an object with long name ",$ln{$module.$Cname}," on line ",$… 109 if ($Cname ne "" && defined($ln{$module.$Cname})) 110 …{ die "objects.txt:$o:There's already an object with long name ",$ln{$module.$Cname}," on line ",$… 118 $ln{$Cname} = $myln; 171 print expand("#define LN_$Cname\t\t\"$ln{$Cname}\"\n") if $ln{$Cname} ne "";
|
D | obj_dat.c | 25 DECLARE_OBJ_BSEARCH_CMP_FN(const ASN1_OBJECT *, unsigned int, ln); 50 return strcmp((*a)->ln, nid_objs[*b].ln); in ln_cmp() 53 IMPLEMENT_OBJ_BSEARCH_CMP_FN(const ASN1_OBJECT *, unsigned int, ln); 74 ret = OPENSSL_LH_strhash(a->ln); in added_obj_hash() 112 if (a->ln == NULL) in added_obj_cmp() 114 else if (b->ln == NULL) in added_obj_cmp() 117 return strcmp(a->ln, b->ln); in added_obj_cmp() 193 if (o->ln != NULL) in OBJ_add_object() 284 return nid_objs[n].ln; in OBJ_nid2ln() 293 return adp->obj->ln; in OBJ_nid2ln() [all …]
|
/third_party/uboot/u-boot-2020.01/doc/sphinx/ |
D | parse-headers.pl | 43 my $ln = $_; 45 $ln =~ s,/\*.*(\*/),,g; 47 $is_comment = 1 if ($ln =~ s,/\*.*,,); 49 if ($ln =~ s,^(.*\*/),,) { 56 if ($is_enum && $ln =~ m/^\s*([_\w][\w\d_]+)\s*[\,=]?/) { 69 if ($ln =~ m/^\s*#\s*define\s+([_\w][\w\d_]+)\s+_IO/) { 78 if ($ln =~ m/^\s*#\s*define\s+([_\w][\w\d_]+)\s+/) { 88 if ($ln =~ m/^\s*typedef\s+([_\w][\w\d_]+)\s+(.*)\s+([_\w][\w\d_]+);/) { 95 if ($ln =~ m/^\s*enum\s+([_\w][\w\d_]+)\s+\{/ 96 || $ln =~ m/^\s*enum\s+([_\w][\w\d_]+)$/ [all …]
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/duration/impl/ |
D | ResourceBasedPeriodFormatterDataService.java | 102 String ln = localeName; in get() local 103 while (!availableLocales.contains(ln)) { in get() 104 int ix = ln.lastIndexOf("_"); in get() 106 ln = ln.substring(0, ix); in get() 107 } else if (!"test".equals(ln)) { in get() 108 ln = "test"; in get() 110 ln = null; in get() 114 if (ln != null) { in get() 115 String name = PATH + "pfd_" + ln + ".xml"; in get() 119 DataRecord dr = DataRecord.read(ln, new XMLRecordReader(reader)); in get()
|
/third_party/protobuf/kokoro/linux/32-bit/ |
D | Dockerfile | 102 ln -sfn /usr/local/php-5.5/bin/php /usr/bin/php && \ 103 ln -sfn /usr/local/php-5.5/bin/php-config /usr/bin/php-config && \ 104 ln -sfn /usr/local/php-5.5/bin/phpize /usr/bin/phpize && \ 107 ln -sfn /usr/local/php-5.6/bin/php /usr/bin/php && \ 108 ln -sfn /usr/local/php-5.6/bin/php-config /usr/bin/php-config && \ 109 ln -sfn /usr/local/php-5.6/bin/phpize /usr/bin/phpize && \ 112 ln -sfn /usr/local/php-7.0/bin/php /usr/bin/php && \ 113 ln -sfn /usr/local/php-7.0/bin/php-config /usr/bin/php-config && \ 114 ln -sfn /usr/local/php-7.0/bin/phpize /usr/bin/phpize && \ 117 ln -sfn /usr/local/php-7.1/bin/php /usr/bin/php && \ [all …]
|
/third_party/boringssl/src/crypto/obj/ |
D | obj.c | 101 char *sn = NULL, *ln = NULL; in OBJ_dup() local 117 r->ln = r->sn = NULL; in OBJ_dup() 132 if (o->ln != NULL) { in OBJ_dup() 133 ln = OPENSSL_strdup(o->ln); in OBJ_dup() 134 if (ln == NULL) { in OBJ_dup() 147 r->ln = ln; in OBJ_dup() 156 OPENSSL_free(ln); in OBJ_dup() 293 return strcmp(name, kObjects[nid].ln); in long_name_cmp() 303 template.ln = long_name; in OBJ_ln2nid() 387 return obj->ln; in OBJ_nid2ln() [all …]
|
/third_party/skia/third_party/externals/icu/source/config/ |
D | dist.mk | 52 ln -sf $(shell basename $(DISTY_DOC_ZIP)) $(DISTY_FILE_DIR)/icu4c-docs.zip 53 ln -f $(DISTY_DOC_ZIP) $(DISTY_FILE_DIR)/icu4c-$(DISTY_VER)-docs.zip 78 ln -sf $(shell basename $(DISTY_FILE_ZIP)) $(DISTY_FILE_DIR)/icu4c-src.zip 79 ln -sf $(shell basename $(DISTY_FILE_TGZ)) $(DISTY_FILE_DIR)/icu4c-src.tgz 80 ln -sf $(shell basename $(DISTY_DATA_ZIP)) $(DISTY_FILE_DIR)/icu4c-data.zip 81 ln -f $(DISTY_FILE_ZIP) $(DISTY_FILE_DIR)/icu4c-$(DISTY_VER)-src.zip 82 ln -f $(DISTY_FILE_TGZ) $(DISTY_FILE_DIR)/icu4c-$(DISTY_VER)-src.tgz 83 ln -f $(DISTY_DATA_ZIP) $(DISTY_FILE_DIR)/icu4c-$(DISTY_VER)-data.zip
|
/third_party/icu/icu4c/source/config/ |
D | dist.mk | 52 ln -sf $(shell basename $(DISTY_DOC_ZIP)) $(DISTY_FILE_DIR)/icu4c-docs.zip 53 ln -f $(DISTY_DOC_ZIP) $(DISTY_FILE_DIR)/icu4c-$(DISTY_VER)-docs.zip 78 ln -sf $(shell basename $(DISTY_FILE_ZIP)) $(DISTY_FILE_DIR)/icu4c-src.zip 79 ln -sf $(shell basename $(DISTY_FILE_TGZ)) $(DISTY_FILE_DIR)/icu4c-src.tgz 80 ln -sf $(shell basename $(DISTY_DATA_ZIP)) $(DISTY_FILE_DIR)/icu4c-data.zip 81 ln -f $(DISTY_FILE_ZIP) $(DISTY_FILE_DIR)/icu4c-$(DISTY_VER)-src.zip 82 ln -f $(DISTY_FILE_TGZ) $(DISTY_FILE_DIR)/icu4c-$(DISTY_VER)-src.tgz 83 ln -f $(DISTY_DATA_ZIP) $(DISTY_FILE_DIR)/icu4c-$(DISTY_VER)-data.zip
|
/third_party/python/Lib/idlelib/idle_test/ |
D | test_sidebar.py | 320 ln = self.linenumber 322 orig_font = ln.sidebar_text['font'] 327 ln.hide_sidebar() 331 ln.update_font() 334 ln.show_sidebar() 335 self.assertEqual(ln.sidebar_text['font'], test_font) 339 ln.update_font() 340 self.assertEqual(ln.sidebar_text['font'], orig_font) 343 ln = self.linenumber 349 self.assertEqual(ln.sidebar_text['background'], colors['background']) [all …]
|
/third_party/boringssl/src/crypto/asn1/ |
D | a_object.c | 215 ret->ln = NULL; in c2i_ASN1_OBJECT() 243 ret->ln = NULL; in ASN1_OBJECT_new() 258 if (a->ln != NULL) in ASN1_OBJECT_free() 259 OPENSSL_free((void *)a->ln); in ASN1_OBJECT_free() 261 a->sn = a->ln = NULL; in ASN1_OBJECT_free() 274 const char *sn, const char *ln) in ASN1_OBJECT_create() argument 279 o.ln = ln; in ASN1_OBJECT_create()
|
/third_party/boost/libs/math/doc/equations/ |
D | lgamm3.mml | 3 <mi>ln</mi> 18 <mi>ln</mi> 25 <mi>ln</mi> 37 <mi>ln</mi>
|
/third_party/openssl/crypto/x509v3/ |
D | v3_admis.c | 90 const char *ln = OBJ_nid2ln(OBJ_obj2nid(namingAuthority->namingAuthorityId)); in i2r_NAMING_AUTHORITY() local 97 if (BIO_printf(bp, "%s%s%s%s\n", ln ? ln : "", in i2r_NAMING_AUTHORITY() 98 ln ? " (" : "", objbuf, ln ? ")" : "") <= 0) in i2r_NAMING_AUTHORITY() 188 const char *ln = OBJ_nid2ln(OBJ_obj2nid(obj)); in i2r_ADMISSION_SYNTAX() local 193 ln ? ln : "", ln ? " (" : "", in i2r_ADMISSION_SYNTAX() 194 objbuf, ln ? ")" : "") <= 0) in i2r_ADMISSION_SYNTAX()
|
/third_party/f2fs-tools/fsck/ |
D | Makefile.am | 14 ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/dump.f2fs 15 ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/defrag.f2fs 16 ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/resize.f2fs 17 ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/sload.f2fs
|
/third_party/json/benchmarks/thirdparty/benchmark/src/ |
D | sysinfo.cc | 402 std::string ln; in GetNumCPUs() 403 while (std::getline(f, ln)) { in GetNumCPUs() 404 if (ln.empty()) continue; in GetNumCPUs() 405 size_t SplitIdx = ln.find(':'); in GetNumCPUs() 407 if (SplitIdx != std::string::npos) value = ln.substr(SplitIdx + 1); in GetNumCPUs() 408 if (ln.size() >= Key.size() && ln.compare(0, Key.size(), Key) == 0) { in GetNumCPUs() 473 std::string ln; in GetCPUCyclesPerSecond() local 474 while (std::getline(f, ln)) { in GetCPUCyclesPerSecond() 475 if (ln.empty()) continue; in GetCPUCyclesPerSecond() 476 size_t SplitIdx = ln.find(':'); in GetCPUCyclesPerSecond() [all …]
|
/third_party/flutter/skia/third_party/externals/sdl/ |
D | Makefile.wiz | 35 ln -s $(TARGET_SHARED).0.0.1 $(TARGET_SHARED).0 36 ln -s $(TARGET_SHARED).0 $(TARGET_SHARED) 50 ln -s $(WIZSDK)/lib/$(TARGET_SHARED).0.0.1 $(WIZSDK)/lib/$(TARGET_SHARED).0 51 ln -s $(WIZSDK)/lib/$(TARGET_SHARED).0 $(WIZSDK)/lib/$(TARGET_SHARED) 56 ln -s ../../toolchain/libs/$(TARGET_SHARED).0.0.1 ../../toolchain/libs/$(TARGET_SHARED).0 57 ln -s ../../toolchain/libs/$(TARGET_SHARED).0 ../../toolchain/libs/$(TARGET_SHARED)
|
/third_party/openssl/crypto/bn/ |
D | bn_sqr.c | 160 BN_ULONG ln, lo, *p; in bn_sqr_recursive() local 222 ln = (lo + c1) & BN_MASK2; in bn_sqr_recursive() 223 *p = ln; in bn_sqr_recursive() 229 if (ln < (BN_ULONG)c1) { in bn_sqr_recursive() 233 ln = (lo + 1) & BN_MASK2; in bn_sqr_recursive() 234 *p = ln; in bn_sqr_recursive() 235 } while (ln == 0); in bn_sqr_recursive()
|
/third_party/benchmark/src/ |
D | sysinfo.cc | 492 std::string ln; in GetNumCPUs() 493 while (std::getline(f, ln)) { in GetNumCPUs() 494 if (ln.empty()) continue; in GetNumCPUs() 495 size_t SplitIdx = ln.find(':'); in GetNumCPUs() 500 if (SplitIdx != std::string::npos) value = ln.substr(Key.size()+1,SplitIdx-Key.size()-1); in GetNumCPUs() 502 if (SplitIdx != std::string::npos) value = ln.substr(SplitIdx + 1); in GetNumCPUs() 504 if (ln.size() >= Key.size() && ln.compare(0, Key.size(), Key) == 0) { in GetNumCPUs() 569 std::string ln; in GetCPUCyclesPerSecond() local 570 while (std::getline(f, ln)) { in GetCPUCyclesPerSecond() 571 if (ln.empty()) continue; in GetCPUCyclesPerSecond() [all …]
|