Home
last modified time | relevance | path

Searched refs:nu (Results 1 - 25 of 28) sorted by relevance

12

/third_party/skia/samplecode/
H A DSamplePatch.cpp78 static void eval_sheet(const SkPoint edge[], int nu, int nv, int iu, int iv, in eval_sheet() argument
81 const int TR = nu; in eval_sheet()
83 const int BL = BR + nu; in eval_sheet()
85 SkScalar u = SkIntToScalar(iu) / nu; in eval_sheet()
97 v * edge[BR+nu-iu].fX + (1 - u) * edge[BL+nv-iv].fX - x0; in eval_sheet()
99 v * edge[BR+nu-iu].fY + (1 - u) * edge[BL+nv-iv].fY - y0; in eval_sheet()
107 void Patch::draw(SkCanvas* canvas, const SkPaint& paint, int nu, int nv, in draw() argument
109 if (nu < 1 || nv < 1) { in draw()
113 int i, npts = (nu + nv) * 2; in draw()
116 SkPoint* edge1 = edge0 + nu; in draw()
187 drawpatches(SkCanvas* canvas, const SkPaint& paint, int nu, int nv, Patch* patch) drawpatches() argument
239 const int nu = 10; global() variable
[all...]
/third_party/ffmpeg/tests/checkasm/
H A Dvf_gblur.c40 float nu = 0.101f; in check_horiz_slice() local
43 declare_func(void, float *dst, int w, int h, int steps, float nu, float bscale, float *localbuf); in check_horiz_slice()
44 call_ref(dst_ref, WIDTH, HEIGHT, steps, nu, bscale, localbuf); in check_horiz_slice()
45 call_new(dst_new, WIDTH, HEIGHT, steps, nu, bscale, localbuf); in check_horiz_slice()
49 bench_new(dst_new, WIDTH, HEIGHT, 1, nu, bscale, localbuf); in check_horiz_slice()
55 float nu = 0.101f; in check_verti_slice() local
59 int column_end, int steps, float nu, float bscale); in check_verti_slice()
60 call_ref(dst_ref, WIDTH, HEIGHT, 0, WIDTH, steps, nu, bscale); in check_verti_slice()
61 call_new(dst_new, WIDTH, HEIGHT, 0, WIDTH, steps, nu, bscale); in check_verti_slice()
65 bench_new(dst_new, WIDTH, HEIGHT, 0, WIDTH, 1, nu, bscal in check_verti_slice()
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_gblur_init.h46 float nu, float bscale, float *localbuf) in horiz_slice_c()
56 ptr[x] += nu * ptr[x - 1]; in horiz_slice_c()
61 ptr[x - 1] += nu * ptr[x]; in horiz_slice_c()
68 float nu, float boundaryscale, int column_step) in do_vertical_columns()
81 ptr[i + k] += nu * ptr[i - width + k]; in do_vertical_columns()
92 ptr[i - width + k] += nu * ptr[i + k]; in do_vertical_columns()
101 float nu, float boundaryscale) in verti_slice_c()
106 steps, nu, boundaryscale, 8); in verti_slice_c()
109 steps, nu, boundaryscale, 1); in verti_slice_c()
45 horiz_slice_c(float *buffer, int width, int height, int steps, float nu, float bscale, float *localbuf) horiz_slice_c() argument
66 do_vertical_columns(float *buffer, int width, int height, int column_begin, int column_end, int steps, float nu, float boundaryscale, int column_step) do_vertical_columns() argument
99 verti_slice_c(float *buffer, int width, int height, int slice_start, int slice_end, int steps, float nu, float boundaryscale) verti_slice_c() argument
H A Dgblur.h51 float nu; member
54 void (*horiz_slice)(float *buffer, int width, int height, int steps, float nu, float bscale, float *localbuf);
56 float nu, float bscale);
H A Dvf_gblur.c68 const float nu = s->nu; in filter_horizontally() local
76 steps, nu, boundaryscale, localbuf); in filter_horizontally()
91 const float nu = s->nuV; in filter_vertically() local
95 steps, nu, boundaryscale); in filter_vertically()
201 static void set_params(float sigma, int steps, float *postscale, float *boundaryscale, float *nu) in set_params() argument
209 *nu = (float)dnu; in set_params()
220 set_params(s->sigma, s->steps, &s->postscale, &s->boundaryscale, &s->nu); in filter_frame()
H A Dvf_dblur.c169 float mu, nu, R1, R2, w1, w2; in set_params() local
175 nu = sinf(angle); in set_params()
177 R2 = (nu * r) * (nu * r); in set_params()
178 s->R3 = mu * nu * r * r; in set_params()
H A Dvf_colorcorrect.c310 float nu, nv; \
312 nu = saturation * (u + y * bd + bl); \
343 uptr[x] = av_clip_uint8((nu + 0.5f) * max); in colorcorrect_slice8()
384 uptr[x] = av_clip_uintp2_c((nu + 0.5f) * max, depth); in colorcorrect_slice16()
/third_party/ffmpeg/libavfilter/x86/
H A Dvf_gblur.asm430 ; float nu, float bscale)
442 cglobal horiz_slice, 5, 12, mmnum, 0-mmsize*4, buffer, width, height, steps, nu, bscale, \
445 cglobal horiz_slice, 4, 9, 9, ptr, width, height, steps, nu, bscale, x, y, step, stride, remain
452 VBROADCASTSS m0, num ; nu
459 VBROADCASTSS m0, xmm0 ; nu
640 mulss m2, m0, m0 ; nu ^ 2
641 mulss m3, m2, m0 ; nu ^ 3
642 mulss m4, m3, m0 ; nu ^ 4
670 ; ptr[x] += nu * ptr[x - 1];
674 ; p1' = p1 + p0*nu
[all...]
H A Dvf_gblur_init.c27 void ff_horiz_slice_sse4(float *ptr, int width, int height, int steps, float nu, float bscale, float *localbuf);
28 void ff_horiz_slice_avx2(float *ptr, int width, int height, int steps, float nu, float bscale, float *localbuf);
29 void ff_horiz_slice_avx512(float *ptr, int width, int height, int steps, float nu, float bscale, float *localbuf);
36 int steps, float nu, float bscale);
38 int steps, float nu, float bscale);
/third_party/lzma/C/
H A DPpmd7.c22 #define U2B(nu) ((UInt32)(nu) * UNIT_SIZE)
23 #define U2I(nu) (p->Units2Indx[(size_t)(nu) - 1])
139 unsigned i, nu = I2U(oldIndx) - I2U(newIndx); in Ppmd7_SplitBlock() local
141 if (I2U(i = U2I(nu)) != nu) in Ppmd7_SplitBlock()
144 Ppmd7_InsertNode(p, ((Byte *)ptr) + U2B(k), nu - k - 1); in Ppmd7_SplitBlock()
187 const UInt16 nu = I2U_UInt16(i); in Ppmd7_GlueFreeBlocks() local
197 un->Node.NU = nu; in Ppmd7_GlueFreeBlocks()
212 UInt32 nu = node->NU; Ppmd7_GlueFreeBlocks() local
236 UInt32 nu = node->NU; Ppmd7_GlueFreeBlocks() local
[all...]
/third_party/typescript/tests/baselines/reference/
H A DfunctionImplementations.js46 var nu = null; variable
47 var nu = function () { function
213 var nu = null; variable
214 var nu = function () {
H A Dliterals.js9 var nu = null / null; variable
48 var nu = null / null; variable
/third_party/mbedtls/tests/
H A Dcompat.sh789 [Gg]nu*)
941 [Gg]nu*)
1069 mbed*|[Oo]pen*|[Gg]nu*)
1158 [Gg]nu*)
/third_party/ltp/testcases/network/nfsv4/acl/
H A Dcreate_users.py11 parser.add_option("-u", "--users", dest="nu",type="int",help="number of users to create")
21 test.createNUser(options.nu)
/third_party/libwebsockets/lib/core/
H A Dcontext.c1775 uint32_t nu; in lws_context_destroy() local
2025 for (nu = 0; nu < context->pl_hash_elements; nu++) { in lws_context_destroy()
2026 if (!context->pl_hash_table[nu]) in lws_context_destroy()
2029 context->pl_hash_table[nu]) { in lws_context_destroy()
/third_party/vk-gl-cts/external/vulkan-docs/src/katex/contrib/
H A Dmhchem.min.js1 !function(t,e){if("object"==typeof exports&&"object"==typeof module)module.exports=e(require("katex"));else if("function"==typeof define&&define.amd)define(["katex"],e);else{var n="object"==typeof exports?e(require("katex")):e(t.katex);for(var o in n)("object"==typeof exports?exports:t)[o]=n[o]}}("undefined"!=typeof self?self:this,function(t){return function(t){var e={};function n(o){if(e[o])return e[o].exports;var a=e[o]={i:o,l:!1,exports:{}};return t[o].call(a.exports,a,a.exports,n),a.l=!0,a.exports}return n.m=t,n.c=e,n.d=function(t,e,o){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:o})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var a in t)n.d(o,a,function(e){return t[e]}.bind(null,a));return o},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=1)}([function(e,n){e.exports=t},function(t,e,n){"use strict";n.r(e);var o=n(0),a=n.n(o);a.a.__defineMacro("\\ce",function(t){return r(t.consumeArgs(1)[0],"ce")}),a.a.__defineMacro("\\pu",function(t){return r(t.consumeArgs(1)[0],"pu")}),a.a.__defineMacro("\\tripledash","{\\vphantom{-}\\raisebox{2.56mu}{$\\mkern2mu\\tiny\\text{-}\\mkern1mu\\text{-}\\mkern1mu\\text{-}\\mkern2mu$}}");var r=function(t,e){for(var n="",o=t[t.length-1].loc.start,a=t.length-1;a>=0;a--)t[a].loc.start>o&&(n+=" ",o=t[a].loc.start),n+=t[a].text,o+=t[a].text.length;return c.go(i.go(n,e))},i={go:function(t,e){if(!t)return[];void 0===e&&(e="ce");var n,o="0",a={};a.parenthesisLevel=0,t=(t=(t=t.replace(/\n/g," ")).replace(/[\u2212\u2013\u2014\u2010]/g,"-")).replace(/[\u2026]/g,"...");for(var r=10,c=[];;){n!==t?(r=10,n=t):r--;var u=i.stateMachines[e],p=u.transitions[o]||u.transitions["*"];t:for(var s=0;s<p.length;s++){var _=i.patterns.match_(p[s].pattern,t);if(_){for(var d=p[s].task,m=0;m<d.action_.length;m++){var l;if(u.actions[d.action_[m].type_])l=u.actions[d.action_[m].type_](a,_.match_,d.action_[m].option);else{if(!i.actions[d.action_[m].type_])throw["MhchemBugA","mhchem bug A. Please report. ("+d.action_[m].type_+")"];l=i.actions[d.action_[m].type_](a,_.match_,d.action_[m].option)}i.concatArray(c,l)}if(o=d.nextState||o,!(t.length>0))return c;if(d.revisit||(t=_.remainder),!d.toContinue)break t}}if(r<=0)throw["MhchemBugU","mhchem bug U. Please report."]}},concatArray:function(t,e){if(e)if(Array.isArray(e))for(var n=0;n<e.length;n++)t.push(e[n]);else t.push(e)},patterns:{patterns:{empty:/^$/,else:/^./,else2:/^./,space:/^\s/,"space A":/^\s(?=[A-Z\\$])/,space$:/^\s$/,"a-z":/^[a-z]/,x:/^x/,x$:/^x$/,i$:/^i$/,letters:/^(?:[a-zA-Z\u03B1-\u03C9\u0391-\u03A9?@]|(?:\\(?:alpha|beta|gamma|delta|epsilon|zeta|eta|theta|iota|kappa|lambda|mu|nu|xi|omicron|pi|rho|sigma|tau|upsilon|phi|chi|psi|omega|Gamma|Delta|Theta|Lambda|Xi|Pi|Sigma|Upsilon|Phi|Psi|Omega)(?:\s+|\{\}|(?![a-zA-Z]))))+/,"\\greek":/^\\(?:alpha|beta|gamma|delta|epsilon|zeta|eta|theta|iota|kappa|lambda|mu|nu|xi|omicron|pi|rho|sigma|tau|upsilon|phi|chi|psi|omega|Gamma|Delta|Theta|Lambda|Xi|Pi|Sigma|Upsilon|Phi|Psi|Omega)(?:\s+|\{\}|(?![a-zA-Z]))/,"one lowercase latin letter $":/^(?:([a-z])(?:$|[^a-zA-Z]))$/,"$one lowercase latin letter$ $":/^\$(?:([a-z])(?:$|[^a-zA-Z]))\$$/,"one lowercase greek letter $":/^(?:\$?[\u03B1-\u03C9]\$?|\$?\\(?:alpha|beta|gamma|delta|epsilon|zeta|eta|theta|iota|kappa|lambda|mu|nu|xi|omicron|pi|rho|sigma|tau|upsilon|phi|chi|psi|omega)\s*\$?)(?:\s+|\{\}|(?![a-zA-Z]))$/,digits:/^ (…)
/third_party/curl/include/curl/
H A Dcurl.h1076 #define CURLOPT(na,t,nu) na = t + nu
1077 #define CURLOPTDEPRECATED(na,t,nu,v,m) na CURL_DEPRECATED(v,m) = t + nu
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/
H A DTransliteratorTest.java554 char nu = (char)0x3BD; in TestJ277()
561 // sigma upsilon nu -> syn in TestJ277()
563 buf.append(sigma).append(upsilon).append(nu); in TestJ277()
567 // sigma alpha upsilon nu -> saun in TestJ277()
569 buf.append(sigma).append(alpha).append(upsilon).append(nu); in TestJ277()
576 "$nu = \u03BD;" + in TestJ277()
584 "n <> $nu;"; in TestJ277()
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
H A DTransliteratorTest.java551 char nu = (char)0x3BD; in TestJ277()
558 // sigma upsilon nu -> syn in TestJ277()
560 buf.append(sigma).append(upsilon).append(nu); in TestJ277()
564 // sigma alpha upsilon nu -> saun in TestJ277()
566 buf.append(sigma).append(alpha).append(upsilon).append(nu); in TestJ277()
573 "$nu = \u03BD;" + in TestJ277()
581 "n <> $nu;"; in TestJ277()
/third_party/openssl/test/
H A Devp_kdf_test.c815 unsigned int nu = 1024, ru = 8, pu = 16, maxmem = 16; in test_kdf_scrypt() local
831 *p++ = OSSL_PARAM_construct_uint(OSSL_KDF_PARAM_SCRYPT_N, &nu); in test_kdf_scrypt()
/third_party/icu/icu4c/source/test/intltest/
H A Dtranstst.cpp780 UChar nu = 0x3BD; in TestJ277() local
787 // sigma upsilon nu -> syn in TestJ277()
789 syn.append(sigma).append(upsilon).append(nu); in TestJ277()
792 // sigma alpha upsilon nu -> saun in TestJ277()
794 sayn.append(sigma).append(alpha).append(upsilon).append(nu); in TestJ277()
800 "$nu = \\u03BD;" in TestJ277()
808 "n <> $nu;", in TestJ277()
/third_party/typescript/lib/
H A DtypingsInstaller.js[all...]
H A Dtsc.js[all...]
H A Dtsserverlibrary.js[all...]
/third_party/node/test/fixtures/snapshot/
H A Dtypescript.js[all...]

Completed in 147 milliseconds

12