Home
last modified time | relevance | path

Searched refs:nv (Results 1 – 25 of 46) sorted by relevance

12

/external/qemu/audio/
Dmixeng_template.h49 IN_T nv = ENDIAN_CONVERT (v); in glue() local
53 return nv * (1.f / (mixeng_real) (IN_MAX - IN_MIN)); in glue()
55 return (nv - HALF) * (1.f / (mixeng_real) IN_MAX); in glue()
59 return nv / (mixeng_real) (IN_MAX - IN_MIN); in glue()
61 return (nv - HALF) / (mixeng_real) IN_MAX; in glue()
86 IN_T nv = ENDIAN_CONVERT (v); in glue() local
88 return ((int64_t) nv) << (32 - SHIFT); in glue()
90 return ((int64_t) nv - HALF) << (32 - SHIFT); in glue()
/external/emma/core/java12/com/vladium/util/args/
DOptsParser.java125 final String [] nv = new String [2]; // out buffer for getOptNameAndValue() in parse() local
154 getOptNameAndValue (av, nv); // this can leave nv[1] as null in parse()
158 final String optName = nv [0]; // is not necessarily canonical in parse()
202 value = nv [1]; in parse()
462 private static void getOptNameAndValue (final String av, final String [] nv) in getOptNameAndValue() argument
464 nv [0] = null; in getOptNameAndValue()
465 nv [1] = null; in getOptNameAndValue()
488 nv [0] = name.substring (0, sindex); in getOptNameAndValue()
489 nv [1] = name.substring (sindex + 1); in getOptNameAndValue()
493 nv [0] = name; in getOptNameAndValue()
/external/tesseract/liblept/
Dmorphdwa.c1192 l_int32 i, nops, nh, extrah, nv, extrav; in pixDilateCompBrickExtendDwa() local
1210 getExtendedCompositeParameters(vsize, &nv, &extrav, NULL); in pixDilateCompBrickExtendDwa()
1256 nops = (extrav < 3) ? nv : nv + 1; in pixDilateCompBrickExtendDwa()
1314 l_int32 i, nops, nh, extrah, nv, extrav; in pixErodeCompBrickExtendDwa() local
1332 getExtendedCompositeParameters(vsize, &nv, &extrav, NULL); in pixErodeCompBrickExtendDwa()
1378 nops = (extrav < 3) ? nv : nv + 1; in pixErodeCompBrickExtendDwa()
/external/webkit/V8Binding/v8/src/arm/
Dassembler-arm.cc220 nv = 15 << 28 enumerator
338 if ((instr & CondMask) == nv && (instr & B24) != 0) in target_at()
357 if ((instr & CondMask) == nv) { in target_at_put()
389 if (cond == nv) { in print()
1146 cdp(coproc, opcode_1, crd, crn, crm, opcode_2, static_cast<Condition>(nv)); in cdp2()
1169 mcr(coproc, opcode_1, rd, crn, crm, opcode_2, static_cast<Condition>(nv)); in mcr2()
1192 mrc(coproc, opcode_1, rd, crn, crm, opcode_2, static_cast<Condition>(nv)); in mrc2()
1222 ldc(coproc, crd, src, l, static_cast<Condition>(nv)); in ldc2()
1231 ldc(coproc, crd, rn, option, l, static_cast<Condition>(nv)); in ldc2()
1261 stc(coproc, crd, dst, l, static_cast<Condition>(nv)); in stc2()
[all …]
/external/webkit/SunSpider/tests/parse-only/
Dprototype-1.6.0.3.js3377 '=': function(nv, v) { return nv == v; }, argument
3378 '!=': function(nv, v) { return nv != v; }, argument
3379 '^=': function(nv, v) { return nv == v || nv && nv.startsWith(v); }, argument
3380 '$=': function(nv, v) { return nv == v || nv && nv.endsWith(v); }, argument
3381 '*=': function(nv, v) { return nv == v || nv && nv.include(v); }, argument
3382 '$=': function(nv, v) { return nv.endsWith(v); }, argument
3383 '*=': function(nv, v) { return nv.include(v); }, argument
3384 '~=': function(nv, v) { return (' ' + nv + ' ').include(' ' + v + ' '); }, argument
3385 '|=': function(nv, v) { return ('-' + (nv || "").toUpperCase() + argument
Dconcat-jquery-mootools-prototype.js11756 '=': function(nv, v) { return nv == v; }, argument
11757 '!=': function(nv, v) { return nv != v; }, argument
11758 '^=': function(nv, v) { return nv == v || nv && nv.startsWith(v); }, argument
11759 '$=': function(nv, v) { return nv == v || nv && nv.endsWith(v); }, argument
11760 '*=': function(nv, v) { return nv == v || nv && nv.include(v); }, argument
11761 '$=': function(nv, v) { return nv.endsWith(v); }, argument
11762 '*=': function(nv, v) { return nv.include(v); }, argument
11763 '~=': function(nv, v) { return (' ' + nv + ' ').include(' ' + v + ' '); }, argument
11764 '|=': function(nv, v) { return ('-' + (nv || "").toUpperCase() + argument
/external/webkit/SunSpider/tests/
D3d-raytrace.js148 this.nv = normal[v] / normal[this.axis];
163 var d = dir[this.axis] + this.nu * dir[u] + this.nv * dir[v];
164 var t = (this.nd - orig[this.axis] - this.nu * orig[u] - this.nv * orig[v]) / d;
/external/icu4c/data/unidata/
DPropertyAliases.txt53 nv ; Numeric_Value
/external/icu4c/test/intltest/
Dtranstst.cpp1986 int32_t nv = Transliterator::countAvailableVariants(source, target); in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() local
1987 if (nv < 0 || nv > 255) { in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
1988 errln((UnicodeString)"FAIL: Bad variant count: " + nv); in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
1991 for (int32_t k=0; k<nv; ++k) { in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
/external/icu4c/test/cintltst/
Dcucdtst.c2655 double nv; in TestNumericProperties() local
2662 nv=u_getNumericValue(c); in TestNumericProperties()
2667 if(0.000001 <= fabs(nv - values[i].numValue)) { in TestNumericProperties()
2668 log_err("u_getNumericValue(U+%04lx)=%g should be %g\n", c, nv, values[i].numValue); in TestNumericProperties()
/external/icu4c/data/locales/
Dhe.txt1031 nv{"נבחו"}
Did.txt415 nv{"Navajo"}
Dfa.txt819 nv{"ناواهویی"}
Dar.txt1494 nv{"النافاجو"}
Dzh_Hant.txt1426 nv{"納瓦約文"}
Dja.txt1686 nv{"ナバホ語"}
Duk.txt1557 nv{"навахо"}
Dmt.txt624 nv{"Navaħo"}
Dnn.txt636 nv{"navajo"}
Dko.txt1649 nv{"나바호어"}
Dth.txt1650 nv{"นาวาโฮ"}
Dzh.txt1721 nv{"纳瓦霍文"}
Dru.txt1707 nv{"навахо"}
Dro.txt1255 nv{"navajo"}
Dga.txt1347 nv{"Navachóis"}

12