Home
last modified time | relevance | path

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

12345678910>>...38

/external/python/cpython3/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 …]
/external/python/cpython2/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 …]
/external/clang/utils/perf-training/
Dperf-helper.py118 for ln in cc_output.split('\n'):
120 if (ln == 'Using built-in specs.' or
121 ln.startswith('Configured with:') or
122 ln.startswith('Target:') or
123 ln.startswith('Thread model:') or
124 ln.startswith('InstalledDir:') or
125 ln.startswith('LLVM Profile Note') or
126 ' version ' in ln):
128 cc_commands.append(ln)
185 for ln in f:
[all …]
/external/swiftshader/third_party/LLVM/utils/lit/lit/
DTestRunner.py240 ln = ' &&\n'.join(commands)
242 cmd = ShUtil.ShParser(ln, litConfig.isWindows).parse()
244 return (Test.FAIL, "shell parser error on: %r" % ln)
266 for ln in commands:
269 ln = TclUtil.TclLexer(ln).lex_unquoted(process_all = True)
272 tokens = list(TclUtil.TclLexer(ln).lex())
274 return (Test.FAIL, "Tcl lexer error on: %r" % ln)
280 "Invalid test line: %r containing %r" % (ln, t))
285 return (Test.FAIL, "Tcl 'exec' parse error on: %r" % ln)
429 for ln in open(sourcepath):
[all …]
/external/toybox/tests/
Dreadlink.test18 ln -sf notfound link
21 ln -sf ../../ link
24 ln -sf file link
26 ln -sf . link
28 ln -snf link link
42 ln -s . here &&
43 ln -s ./sub dir &&
51 ln -sf / link || exit 1
55 rm -f link && ln -sf link link || exit 1
63 ln -s link1 link2
[all …]
/external/syslinux/core/lwip/src/core/snmp/
Dmib_structs.c158 struct mib_list_node *ln; in snmp_mib_ln_alloc() local
160 ln = (struct mib_list_node *)memp_malloc(MEMP_SNMP_NODE); in snmp_mib_ln_alloc()
161 if (ln != NULL) in snmp_mib_ln_alloc()
163 ln->prev = NULL; in snmp_mib_ln_alloc()
164 ln->next = NULL; in snmp_mib_ln_alloc()
165 ln->objid = id; in snmp_mib_ln_alloc()
166 ln->nptr = NULL; in snmp_mib_ln_alloc()
168 return ln; in snmp_mib_ln_alloc()
172 snmp_mib_ln_free(struct mib_list_node *ln) in snmp_mib_ln_free() argument
174 memp_free(MEMP_SNMP_NODE, ln); in snmp_mib_ln_free()
[all …]
/external/python/cpython2/Mac/
DMakefile.in37 INSTALL_SYMLINK=ln -fsn
57 ln -sf python$(VERSION) "$(DESTDIR)$(prefix)/bin/python2"
58 ln -sf python2 "$(DESTDIR)$(prefix)/bin/python"
59 ln -sf pythonw$(VERSION) "$(DESTDIR)$(prefix)/bin/pythonw2"
60 ln -sf pythonw2 "$(DESTDIR)$(prefix)/bin/pythonw"
64 ln -sf python$(VERSION)-32 "$(DESTDIR)$(prefix)/bin/python2-32"
65 ln -sf python2-32 "$(DESTDIR)$(prefix)/bin/python-32"
66 ln -sf pythonw$(VERSION)-32 "$(DESTDIR)$(prefix)/bin/pythonw2-32"
67 ln -sf pythonw2-32 "$(DESTDIR)$(prefix)/bin/pythonw-32"
87 ln -fs "$(prefix)/bin/$${fn}" "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin/$${fn}" ;\
[all …]
/external/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()
/external/icu/android_icu4j/src/main/java/android/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()
/external/libmtp/src/
Dutil.c103 uint32_t ln, lc; in data_dump_ascii() local
111 ln = ( remain > 16 ) ? 16 : remain; in data_dump_ascii()
113 for (i = 0; i < ln; i++) { in data_dump_ascii()
118 if ( ln < 16 ) { in data_dump_ascii()
119 int width = ((16-ln)/2)*5 + (2*(ln%2)); in data_dump_ascii()
124 for (i = 0; i < ln; i++) { in data_dump_ascii()
132 remain -= ln; in data_dump_ascii()
133 dump_boundry += ln; in data_dump_ascii()
/external/llvm/utils/lit/lit/formats/
Dgoogletest.py42 for ln in lines:
43 if not ln.strip():
46 if 'Running main() from gtest_main.cc' in ln:
54 while ln[index*2:index*2+2] == ' ':
59 ln = ln[index*2:]
60 if ln.endswith('.'):
61 nested_tests.append(ln)
63 for name in nested_tests + [ln]]):
68 yield ''.join(nested_tests) + ln
/external/boringssl/src/crypto/obj/
Dobj.c103 char *sn = NULL, *ln = NULL; in OBJ_dup() local
119 r->ln = r->sn = NULL; in OBJ_dup()
134 if (o->ln != NULL) { in OBJ_dup()
135 ln = OPENSSL_strdup(o->ln); in OBJ_dup()
136 if (ln == NULL) { in OBJ_dup()
149 r->ln = ln; in OBJ_dup()
158 OPENSSL_free(ln); in OBJ_dup()
295 return strcmp(name, kObjects[nid].ln); in long_name_cmp()
305 template.ln = long_name; in OBJ_ln2nid()
389 return obj->ln; in OBJ_nid2ln()
[all …]
/external/clang/utils/
DCmpDriver99 for ln in err.split('\n'):
100 if (ln == 'Using built-in specs.' or
101 ln.startswith('Target: ') or
102 ln.startswith('Configured with: ') or
103 ln.startswith('Thread model: ') or
104 ln.startswith('gcc version') or
105 ln.startswith('clang version')):
107 elif ln.strip().startswith('"'):
108 self.commands.append(list(splitArgs(ln)))
110 self.stderr += ln + '\n'
/external/mesa3d/src/mesa/program/
Dprog_statevars.c102 const GLuint ln = (GLuint) state[1]; in _mesa_fetch_state() local
106 COPY_4V(value, ctx->Light.Light[ln].Ambient); in _mesa_fetch_state()
109 COPY_4V(value, ctx->Light.Light[ln].Diffuse); in _mesa_fetch_state()
112 COPY_4V(value, ctx->Light.Light[ln].Specular); in _mesa_fetch_state()
115 COPY_4V(value, ctx->Light.Light[ln].EyePosition); in _mesa_fetch_state()
118 value[0] = ctx->Light.Light[ln].ConstantAttenuation; in _mesa_fetch_state()
119 value[1] = ctx->Light.Light[ln].LinearAttenuation; in _mesa_fetch_state()
120 value[2] = ctx->Light.Light[ln].QuadraticAttenuation; in _mesa_fetch_state()
121 value[3] = ctx->Light.Light[ln].SpotExponent; in _mesa_fetch_state()
124 COPY_3V(value, ctx->Light.Light[ln].SpotDirection); in _mesa_fetch_state()
[all …]
/external/mesa3d/src/gallium/targets/vdpau/
DMakefile.am89 ln -f .libs/$${j}.$(VDPAU_MAJOR).$(VDPAU_MINOR).0 \
91 ln -sf $${l} \
93 ln -sf $${l} \
95 ln -sf $${l} \
114 ln -f $${dest_dir}/$${j}.$(VDPAU_MAJOR).$(VDPAU_MINOR).0 \
116 ln -sf $${l} \
118 ln -sf $${l} \
120 ln -sf $${l} \
/external/swiftshader/third_party/LLVM/utils/Target/ARM/
Danalyze-match-table.py12 for ln in lines:
13 ln = ln.split("{", 1)[1]
14 ln = ln.rsplit("}", 1)[0]
15 a,bc = ln.split("{", 1)
/external/llvm/utils/Target/ARM/
Danalyze-match-table.py12 for ln in lines:
13 ln = ln.split("{", 1)[1]
14 ln = ln.rsplit("}", 1)[0]
15 a,bc = ln.split("{", 1)
/external/boringssl/src/crypto/fipsmodule/bn/
Dmul.c300 BN_ULONG ln, lo, *p; in bn_mul_recursive() local
408 ln = lo + c1; in bn_mul_recursive()
409 *p = ln; in bn_mul_recursive()
413 if (ln < (BN_ULONG)c1) { in bn_mul_recursive()
417 ln = lo + 1; in bn_mul_recursive()
418 *p = ln; in bn_mul_recursive()
419 } while (ln == 0); in bn_mul_recursive()
432 BN_ULONG ln, lo, *p; in bn_mul_part_recursive() local
546 ln = lo + c1; in bn_mul_part_recursive()
547 *p = ln; in bn_mul_part_recursive()
[all …]
/external/google-benchmark/src/
Dsysinfo.cc366 std::string ln; in GetNumCPUs()
367 while (std::getline(f, ln)) { in GetNumCPUs()
368 if (ln.empty()) continue; in GetNumCPUs()
369 size_t SplitIdx = ln.find(':'); in GetNumCPUs()
371 if (SplitIdx != std::string::npos) value = ln.substr(SplitIdx + 1); in GetNumCPUs()
372 if (ln.size() >= Key.size() && ln.compare(0, Key.size(), Key) == 0) { in GetNumCPUs()
437 std::string ln; in GetCPUCyclesPerSecond() local
438 while (std::getline(f, ln)) { in GetCPUCyclesPerSecond()
439 if (ln.empty()) continue; in GetCPUCyclesPerSecond()
440 size_t SplitIdx = ln.find(':'); in GetCPUCyclesPerSecond()
[all …]
/external/libcxx/utils/google-benchmark/src/
Dsysinfo.cc366 std::string ln; in GetNumCPUs()
367 while (std::getline(f, ln)) { in GetNumCPUs()
368 if (ln.empty()) continue; in GetNumCPUs()
369 size_t SplitIdx = ln.find(':'); in GetNumCPUs()
371 if (SplitIdx != std::string::npos) value = ln.substr(SplitIdx + 1); in GetNumCPUs()
372 if (ln.size() >= Key.size() && ln.compare(0, Key.size(), Key) == 0) { in GetNumCPUs()
437 std::string ln; in GetCPUCyclesPerSecond() local
438 while (std::getline(f, ln)) { in GetCPUCyclesPerSecond()
439 if (ln.empty()) continue; in GetCPUCyclesPerSecond()
440 size_t SplitIdx = ln.find(':'); in GetCPUCyclesPerSecond()
[all …]
/external/boringssl/src/crypto/asn1/
Da_object.c204 ret->ln = NULL; in c2i_ASN1_OBJECT()
232 ret->ln = NULL; in ASN1_OBJECT_new()
247 if (a->ln != NULL) in ASN1_OBJECT_free()
248 OPENSSL_free((void *)a->ln); in ASN1_OBJECT_free()
250 a->sn = a->ln = NULL; in ASN1_OBJECT_free()
263 const char *sn, const char *ln) in ASN1_OBJECT_create() argument
268 o.ln = ln; in ASN1_OBJECT_create()
/external/swiftshader/third_party/LLVM/utils/git/
Dfind-rev29 for ln in p.stdout:
30 if ln.startswith('commit '):
31 lastCommit = ln.split(' ',2)[1]
32 elif ln.startswith(' git-svn-id: '):
33 _,repo,_ = ln.strip().split(' ')
/external/llvm/utils/git/
Dfind-rev29 for ln in p.stdout:
30 if ln.startswith('commit '):
31 lastCommit = ln.split(' ',2)[1]
32 elif ln.startswith(' git-svn-id: '):
33 _,repo,_ = ln.strip().split(' ')
/external/autotest/client/cros/
Dkernel_trace.py135 for ln in fd.readlines():
136 logging.debug("set_event ln:%s", ln)
137 if re.findall(event, ln):
182 for ln in fd.readlines():
184 self._buffer.append(ln)
186 results = re.findall(regexp, ln)
188 logging.debug(ln)
/external/valgrind/none/tests/
Dallexec_prepare_prereq17 ln -f $1/allexec allexec32
19 ln -f -s allexec64 allexec32
23 ln -f $2/allexec allexec64
25 ln -f -s allexec32 allexec64

12345678910>>...38