/external/python/cpython2/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 …]
|
/external/toybox/tests/ |
D | readlink.test | 18 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/clang/utils/perf-training/ |
D | perf-helper.py | 118 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/ |
D | TestRunner.py | 240 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/python/cpython2/Mac/ |
D | Makefile.in | 37 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/syslinux/core/lwip/src/core/snmp/ |
D | mib_structs.c | 158 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/libmtp/src/ |
D | util.c | 103 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/icu/android_icu4j/src/main/java/android/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()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/ |
D | ResourceBasedPeriodFormatterDataService.java | 100 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/llvm/utils/lit/lit/formats/ |
D | googletest.py | 42 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/clang/utils/ |
D | CmpDriver | 99 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/llvm/utils/Target/ARM/ |
D | analyze-match-table.py | 12 for ln in lines: 13 ln = ln.split("{", 1)[1] 14 ln = ln.rsplit("}", 1)[0] 15 a,bc = ln.split("{", 1)
|
/external/swiftshader/third_party/LLVM/utils/Target/ARM/ |
D | analyze-match-table.py | 12 for ln in lines: 13 ln = ln.split("{", 1)[1] 14 ln = ln.rsplit("}", 1)[0] 15 a,bc = ln.split("{", 1)
|
/external/swiftshader/third_party/LLVM/utils/git/ |
D | find-rev | 29 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/mesa3d/src/gallium/targets/vdpau/ |
D | Makefile.am | 89 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/llvm/utils/git/ |
D | find-rev | 29 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/boringssl/src/crypto/obj/ |
D | obj.c | 103 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() 279 return strcmp(name, kObjects[nid].ln); in long_name_cmp() 289 template.ln = long_name; in OBJ_ln2nid() 373 return obj->ln; in OBJ_nid2ln() [all …]
|
/external/valgrind/none/tests/ |
D | allexec_prepare_prereq | 17 ln -f $1/allexec allexec32 19 ln -f -s allexec64 allexec32 23 ln -f $2/allexec allexec64 25 ln -f -s allexec32 allexec64
|
/external/mesa3d/src/mesa/program/ |
D | prog_statevars.c | 102 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/boringssl/src/crypto/fipsmodule/bn/ |
D | mul.c | 301 BN_ULONG ln, lo, *p; in bn_mul_recursive() local 410 ln = (lo + c1) & BN_MASK2; in bn_mul_recursive() 411 *p = ln; in bn_mul_recursive() 415 if (ln < (BN_ULONG)c1) { in bn_mul_recursive() 419 ln = (lo + 1) & BN_MASK2; in bn_mul_recursive() 420 *p = ln; in bn_mul_recursive() 421 } while (ln == 0); in bn_mul_recursive() 433 BN_ULONG ln, lo, *p; in bn_mul_part_recursive() local 548 ln = (lo + c1) & BN_MASK2; in bn_mul_part_recursive() 549 *p = ln; in bn_mul_part_recursive() [all …]
|
/external/autotest/client/cros/ |
D | kernel_trace.py | 135 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/f2fs-tools/fsck/ |
D | Makefile.am | 12 ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/dump.f2fs 13 ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/defrag.f2fs 14 ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/resize.f2fs 15 ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/sload.f2fs
|
/external/python/cpython2/Lib/test/ |
D | test_macos.py | 50 for ln in data.splitlines(): 51 if ln.startswith('type:'): 52 tp = ln.split()[-1][1:-1] 53 if ln.startswith('creator:'): 54 cr = ln.split()[-1][1:-1]
|
/external/lz4/programs/ |
D | Makefile | 117 ln -s lz4 unlz4 120 ln -s lz4 lz4cat 148 @ln -sf lz4 $(DESTDIR)$(BINDIR)/lz4cat 149 @ln -sf lz4 $(DESTDIR)$(BINDIR)/unlz4 153 @ln -sf lz4.1 $(DESTDIR)$(MANDIR)/lz4c.1 154 @ln -sf lz4.1 $(DESTDIR)$(MANDIR)/lz4cat.1 155 @ln -sf lz4.1 $(DESTDIR)$(MANDIR)/unlz4.1
|
/external/clang/utils/ABITest/ |
D | Enumeration.py | 241 for ln in a[::-1]: 242 if ''.join(ln).strip(): 243 print ' '.join(ln) 245 for ln in b[::-1]: 246 if ''.join(ln).strip(): 247 print ' '.join(ln) 259 for ln in a[::-1]: 260 if ''.join(ln).strip(): 261 print ' '.join(ln)
|