Home
last modified time | relevance | path

Searched refs:ln (Results 1 – 25 of 900) sorted by relevance

12345678910>>...36

/third_party/python/Lib/test/decimaltestdata/
Dln.decTest2 -- 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/
Dmodule-default-device-restore.c60 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 …]
Dmodule-match.c108 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(&regex, ln, REG_EXTENDED|REG_NOSUB) != 0) { in load_rules()
/third_party/openssl/crypto/asn1/
Dasn_moid.c63 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/
Dreadlink.test18 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 …]
Dtar.test95 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/openssl/crypto/objects/
Dobj_dat.pl49 my %ln;
77 $ln{$1} = $d;
119 my $ln = defined $ln{$nid{$i}} ? "$ln{$nid{$i}}" : "NULL";
121 $sn = $ln;
122 $sn{$nid{$i}} = $ln;
124 if ($ln eq "NULL") {
125 $ln = $sn;
126 $ln{$nid{$i}} = $sn;
129 my $out = " {\"$sn\", \"$ln\", NID_$nid{$i}";
193 @a = grep(defined $ln{$nid{$_}}, 0 .. $n);
[all …]
Dobj_dat.c25 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()
290 return nid_objs[n].ln; in OBJ_nid2ln()
304 return adp->obj->ln; in OBJ_nid2ln()
[all …]
Dobjects.pl92 if ($Cname ne "" && defined($ln{$module.$Cname}))
93 …{ die "objects.txt:$o:There's already an object with long name ",$ln{$module.$Cname}," on line ",$…
108 if ($Cname ne "" && defined($ln{$module.$Cname}))
109 …{ die "objects.txt:$o:There's already an object with long name ",$ln{$module.$Cname}," on line ",$…
117 $ln{$Cname} = $myln;
174 print expand("#define LN_$Cname\t\t\"$ln{$Cname}\"\n") if $ln{$Cname} ne "";
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
DResourceBasedPeriodFormatterDataService.java100 String ln = localeName; in get() local
101 while (!availableLocales.contains(ln)) { in get()
102 int ix = ln.lastIndexOf("_"); in get()
104 ln = ln.substring(0, ix); in get()
105 } else if (!"test".equals(ln)) { in get()
106 ln = "test"; in get()
108 ln = null; in get()
112 if (ln != null) { in get()
113 String name = PATH + "pfd_" + ln + ".xml"; in get()
117 DataRecord dr = DataRecord.read(ln, new XMLRecordReader(reader)); in get()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/duration/impl/
DResourceBasedPeriodFormatterDataService.java102 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/
DDockerfile102 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/cups-filters/m4/
Dac_ln_srf.m459 if ln -s -r conf$$.file conf$$ 2>/dev/null; then
60 as_ln_srf='ln -s -r -f'
61 elif ln -s conf$$.file conf$$ 2>/dev/null; then
62 as_ln_srf='./ln-srf'
64 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
65 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
67 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
69 elif ln conf$$.file conf$$ 2>/dev/null; then
70 as_ln_srf=ln
84 [AC_MSG_CHECKING([whether ln -s -r -f works])
[all …]
/third_party/icu/icu4c/source/config/
Ddist.mk52 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/skia/third_party/externals/icu/source/config/
Ddist.mk52 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/bzip2/
Dbzip2.spec63 ln -fs bzdiff %{buildroot}%{_bindir}/bzcmp
64 ln -fs bzgrep %{buildroot}%{_bindir}/bzegrep
65 ln -fs bzgrep %{buildroot}%{_bindir}/bzfgrep
66 ln -fs bzmore %{buildroot}%{_bindir}/bzless
68 ln -s libbz2.so.%{version} %{buildroot}%{_libdir}/libbz2.so.1
69 ln -s libbz2.so.1 %{buildroot}%{_libdir}/libbz2.so
74 ln -s bzip2.1.gz %{buildroot}%{_mandir}/man1/bunzip2.1.gz
75 ln -s bzip2.1.gz %{buildroot}%{_mandir}/man1/bzcat.1.gz
76 ln -s bzip2.1.gz %{buildroot}%{_mandir}/man1/bzip2recover.1.gz
/third_party/f2fs-tools/fsck/
DMakefile.am17 ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/dump.f2fs
18 ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/defrag.f2fs
19 ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/resize.f2fs
20 ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/sload.f2fs
21 ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/f2fslabel
/third_party/openssl/crypto/x509/
Dv3_admis.c89 const char *ln = OBJ_nid2ln(OBJ_obj2nid(namingAuthority->namingAuthorityId)); in i2r_NAMING_AUTHORITY() local
96 if (BIO_printf(bp, "%s%s%s%s\n", ln ? ln : "", in i2r_NAMING_AUTHORITY()
97 ln ? " (" : "", objbuf, ln ? ")" : "") <= 0) in i2r_NAMING_AUTHORITY()
187 const char *ln = OBJ_nid2ln(OBJ_obj2nid(obj)); in i2r_ADMISSION_SYNTAX() local
192 ln ? ln : "", ln ? " (" : "", in i2r_ADMISSION_SYNTAX()
193 objbuf, ln ? ")" : "") <= 0) in i2r_ADMISSION_SYNTAX()
/third_party/ltp/testcases/kernel/mce-test/stress/tools/fs-metadata/
Dk-tree-trav.c47 ln[MAX_PATH]; in k_tree_trav() local
55 sprintf(ln, "%d-l", cnt); in k_tree_trav()
63 symlink(ln, f1); in k_tree_trav()
64 unlink(ln); in k_tree_trav()
/third_party/flutter/skia/third_party/externals/sdl/
DMakefile.wiz35 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/
Dbn_sqr.c160 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()
Dbn_mul.c181 BN_ULONG ln, lo, *p; in bn_mul_recursive() local
300 ln = (lo + c1) & BN_MASK2; in bn_mul_recursive()
301 *p = ln; in bn_mul_recursive()
307 if (ln < (BN_ULONG)c1) { in bn_mul_recursive()
311 ln = (lo + 1) & BN_MASK2; in bn_mul_recursive()
312 *p = ln; in bn_mul_recursive()
313 } while (ln == 0); in bn_mul_recursive()
327 BN_ULONG ln, lo, *p; in bn_mul_part_recursive() local
455 ln = (lo + c1) & BN_MASK2; in bn_mul_part_recursive()
456 *p = ln; in bn_mul_part_recursive()
[all …]
/third_party/benchmark/src/
Dsysinfo.cc491 std::string ln; in GetNumCPUs()
492 while (std::getline(f, ln)) { in GetNumCPUs()
493 if (ln.empty()) continue; in GetNumCPUs()
494 size_t SplitIdx = ln.find(':'); in GetNumCPUs()
500 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()
580 std::string ln; in GetCPUCyclesPerSecond() local
581 while (std::getline(f, ln)) { in GetCPUCyclesPerSecond()
582 if (ln.empty()) continue; in GetCPUCyclesPerSecond()
[all …]
/third_party/ffmpeg/libavfilter/
Dgraphdump.c77 unsigned ln = strlen(l->src->name) + 1 + strlen(l->srcpad->name); in avfilter_graph_dump_to_buf() local
78 max_src_name = FFMAX(max_src_name, ln); in avfilter_graph_dump_to_buf()
84 unsigned ln = strlen(l->dst->name) + 1 + strlen(l->dstpad->name); in avfilter_graph_dump_to_buf() local
85 max_dst_name = FFMAX(max_dst_name, ln); in avfilter_graph_dump_to_buf()
133 unsigned ln = strlen(l->dst->name) + 1 + in avfilter_graph_dump_to_buf() local
139 max_dst_name - ln; in avfilter_graph_dump_to_buf()
/third_party/ffmpeg/tests/fate/
Daac.mak161 FATE_AAC_ENCODE += fate-aac-ln-encode
162 fate-aac-ln-encode: CMD = enc_dec_pcm adts wav s16le $(TARGET_SAMPLES)/audio-reference/luckynight_2…
163 fate-aac-ln-encode: CMP = stddev
164 fate-aac-ln-encode: REF = $(SAMPLES)/audio-reference/luckynight_2ch_44kHz_s16.wav
165 fate-aac-ln-encode: CMP_SHIFT = -4096
166 fate-aac-ln-encode: CMP_TARGET = 72
167 fate-aac-ln-encode: SIZE_TOLERANCE = 3560
168 fate-aac-ln-encode: FUZZ = 30
170 FATE_AAC_ENCODE += fate-aac-ln-encode-128k
171 fate-aac-ln-encode-128k: CMD = enc_dec_pcm adts wav s16le $(TARGET_SAMPLES)/audio-reference/luckyni…
[all …]

12345678910>>...36