Home
last modified time | relevance | path

Searched refs:nx (Results 1 – 25 of 285) sorted by relevance

12345678910>>...12

/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-objdump/
Dcoff-import-library.test3 CHECK: [ 0](sec 0)(fl 0x00)(ty 0)(scl 0) (nx 0) 0x00000000 __imp__constant
5 CHECK: [ 0](sec 0)(fl 0x00)(ty 0)(scl 0) (nx 0) 0x00000000 __imp__data
7 CHECK: [ 0](sec 0)(fl 0x00)(ty 0)(scl 0) (nx 0) 0x00000000 __imp__function
8 CHECK: [ 1](sec 0)(fl 0x00)(ty 20)(scl 0) (nx 0) 0x00000000 _function
10 CHECK: [ 0](sec 0)(fl 0x00)(ty 0)(scl 0) (nx 0) 0x00000000 __imp__ordinal
11 CHECK: [ 1](sec 0)(fl 0x00)(ty 20)(scl 0) (nx 0) 0x00000000 _ordinal
/external/tensorflow/tensorflow/stream_executor/cuda/
Dcufft_10_0.inc5 int nx,
11 return func_ptr(plan, nx, type, batch);
15 int nx, int ny,
20 return func_ptr(plan, nx, ny, type);
24 int nx, int ny, int nz,
29 return func_ptr(plan, nx, ny, nz, type);
46 int nx,
53 return func_ptr(plan, nx, type, batch, workSize);
57 int nx, int ny,
63 return func_ptr(plan, nx, ny, type, workSize);
[all …]
/external/tensorflow/tensorflow/compiler/jit/graphcycles/
Dgraphcycles.cc89 Node* nx = r->nodes_[x]; in CheckInvariants() local
90 if (nx->visited) { in CheckInvariants()
93 if (!ranks.insert(nx->rank).second) { in CheckInvariants()
94 LOG(FATAL) << "Duplicate occurrence of rank " << nx->rank; in CheckInvariants()
96 for (auto y : nx->out) { in CheckInvariants()
98 if (nx->rank >= ny->rank) { in CheckInvariants()
100 << nx->rank << "->" << ny->rank; in CheckInvariants()
167 Node* nx = r->nodes_[x]; in InsertEdge() local
168 if (!nx->out.insert(y).second) { in InsertEdge()
176 if (nx->rank <= ny->rank) { in InsertEdge()
[all …]
/external/llvm/test/Object/
Dobjdump-symbol-table.test12 COFF-i386: [ 0](sec 1)(fl 0x00)(ty 0)(scl 3) (nx 1) 0x00000000 .text
14 COFF-i386: [ 2](sec 2)(fl 0x00)(ty 0)(scl 3) (nx 1) 0x00000000 .data
16 COFF-i386: [ 4](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000000 _main
17 COFF-i386: [ 5](sec 2)(fl 0x00)(ty 0)(scl 3) (nx 0) 0x00000000 L_.str
18 COFF-i386: [ 6](sec 0)(fl 0x00)(ty 0)(scl 2) (nx 0) 0x00000000 _puts
19 COFF-i386: [ 7](sec 0)(fl 0x00)(ty 0)(scl 2) (nx 0) 0x00000000 _SomeOtherFunction
/external/swiftshader/third_party/llvm-7.0/llvm/test/Object/
Dobjdump-symbol-table.test12 COFF-i386: [ 0](sec 1)(fl 0x00)(ty 0)(scl 3) (nx 1) 0x00000000 .text
14 COFF-i386: [ 2](sec 2)(fl 0x00)(ty 0)(scl 3) (nx 1) 0x00000000 .data
16 COFF-i386: [ 4](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000000 _main
17 COFF-i386: [ 5](sec 2)(fl 0x00)(ty 0)(scl 3) (nx 0) 0x00000000 L_.str
18 COFF-i386: [ 6](sec 0)(fl 0x00)(ty 0)(scl 2) (nx 0) 0x00000000 _puts
19 COFF-i386: [ 7](sec 0)(fl 0x00)(ty 0)(scl 2) (nx 0) 0x00000000 _SomeOtherFunction
/external/syzkaller/vendor/github.com/google/go-cmp/cmp/internal/diff/
Ddiff.go120 func Difference(nx, ny int, f EqualFunc) (eq bool, es EditScript) { argument
121 es = searchGraph(nx, ny, f)
124 if !eq && st.NI < (nx+ny)/4 {
130 func searchGraph(nx, ny int, f EqualFunc) EditScript { argument
171 fwdPath := path{+1, point{0, 0}, make(EditScript, 0, (nx+ny)/2)}
172 revPath := path{-1, point{nx, ny}, make(EditScript, 0)}
179 searchBudget := 4 * (nx + ny) // O(n)
207 f = debug.Begin(nx, ny, f, &fwdPath.es, &revPath.es)
Ddebug_enable.go71 func (dbg *debugger) Begin(nx, ny int, f EqualFunc, p1, p2 *EditScript) EqualFunc {
74 top := "┌─" + strings.Repeat("──", nx) + "┐\n"
75 row := "│ " + strings.Repeat("· ", nx) + "│\n"
76 btm := "└─" + strings.Repeat("──", nx) + "┘\n"
/external/fdlibm/
De_rem_pio2.c92 int e0,i,j,nx,n,ix,hx; local
170 nx = 3;
171 while(tx[nx-1]==zero) nx--; /* skip zero term */
172 n = __kernel_rem_pio2(tx,y,e0,nx,2,two_over_pi);
Dk_rem_pio2.c164 int __kernel_rem_pio2(double *x, double *y, int e0, int nx, int prec, const int *ipio2) in __kernel_rem_pio2() argument
166 int __kernel_rem_pio2(x,y,e0,nx,prec,ipio2) in __kernel_rem_pio2()
167 double x[], y[]; int e0,nx,prec; int ipio2[]; in __kernel_rem_pio2()
178 jx = nx-1;
/external/lua/src/
Dltable.c166 int nx; in findindex() local
177 nx = gnext(n); in findindex()
178 if (nx == 0) in findindex()
180 else n += nx; in findindex()
526 int nx = gnext(n); in luaH_getint() local
527 if (nx == 0) break; in luaH_getint()
528 n += nx; in luaH_getint()
547 int nx = gnext(n); in luaH_getshortstr() local
548 if (nx == 0) in luaH_getshortstr()
550 n += nx; in luaH_getshortstr()
[all …]
/external/deqp/modules/gles3/accuracy/
Des3aVaryingInterpolationTests.cpp61 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, floa… in projectedTriInterpolate() argument
63 …return (s[0]*(1.0f-nx-ny)/w[0] + s[1]*ny/w[1] + s[2]*nx/w[2]) / ((1.0f-nx-ny)/w[0] + ny/w[1] + nx/… in projectedTriInterpolate()
82 float nx = wx / dstW; in renderReference() local
85 int triNdx = nx + ny >= 1.0f ? 1 : 0; in renderReference()
86 float triNx = triNdx ? 1.0f - nx : nx; in renderReference()
/external/deqp/modules/gles2/accuracy/
Des2aVaryingInterpolationTests.cpp59 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, floa… in projectedTriInterpolate() argument
61 …return (s[0]*(1.0f-nx-ny)/w[0] + s[1]*ny/w[1] + s[2]*nx/w[2]) / ((1.0f-nx-ny)/w[0] + ny/w[1] + nx/… in projectedTriInterpolate()
80 float nx = wx / dstW; in renderReference() local
83 int triNdx = nx + ny >= 1.0f ? 1 : 0; in renderReference()
84 float triNx = triNdx ? 1.0f - nx : nx; in renderReference()
/external/skia/src/effects/
DSkEmbossMask.cpp73 int nx = alpha[x + neq_to_one(x, maxx)] - alpha[x - nonzero_to_one(x)]; in Emboss() local
76 SkFixed numer = lx * nx + ly * ny + lz_dot_nz; in Emboss()
81 int denom = SkSqrt32(nx * nx + ny * ny + kDelta*kDelta); in Emboss()
/external/skqp/src/effects/
DSkEmbossMask.cpp73 int nx = alpha[x + neq_to_one(x, maxx)] - alpha[x - nonzero_to_one(x)]; in Emboss() local
76 SkFixed numer = lx * nx + ly * ny + lz_dot_nz; in Emboss()
81 int denom = SkSqrt32(nx * nx + ny * ny + kDelta*kDelta); in Emboss()
/external/u-boot/drivers/usb/gadget/
Dcore.c460 urb_link *nx; in first_urb_link() local
461 if (NULL != hd && NULL != (nx = hd->next) && nx != hd) { in first_urb_link()
464 return (nx); in first_urb_link()
476 urb_link *nx; in first_urb() local
477 if (NULL == (nx = first_urb_link (hd))) { in first_urb()
481 return (p2surround (struct urb, link, nx)); in first_urb()
/external/pdfium/xfa/fxfa/parser/
Dcxfa_rectangle.cpp110 float nx = 1.0f; in GetFillPath() local
127 nx = -1, ny = 0; in GetFillPath()
138 nx = 0, ny = -1; in GetFillPath()
149 nx = 1, ny = 0; in GetFillPath()
160 nx = 0, ny = 1; in GetFillPath()
196 fillPath->LineTo(CFX_PointF(cp2.x + fRadius2 * nx, cp2.y + fRadius2 * ny)); in GetFillPath()
487 float nx = 1.0f; in GetPath() local
508 nx = -1, ny = 0; in GetPath()
527 nx = 0, ny = -1; in GetPath()
546 nx = 1, ny = 0; in GetPath()
[all …]
/external/tensorflow/tensorflow/java/src/main/native/
Dgraph_jni.cc151 const jint nx = env->GetArrayLength(x_handles); in Java_org_tensorflow_Graph_addGradients() local
154 std::unique_ptr<TF_Output[]> x(new TF_Output[nx]); in Java_org_tensorflow_Graph_addGradients()
156 std::unique_ptr<TF_Output[]> dy(new TF_Output[nx]); in Java_org_tensorflow_Graph_addGradients()
159 resolveOutputs(env, "x", x_handles, x_indices, x.get(), nx); in Java_org_tensorflow_Graph_addGradients()
176 TF_AddGradientsWithPrefix(g, cprefix, y.get(), ny, x.get(), nx, dx.get(), in Java_org_tensorflow_Graph_addGradients()
188 jlongArray dy_handles_and_indices = env->NewLongArray(nx << 1); in Java_org_tensorflow_Graph_addGradients()
190 for (int i = 0, j = nx; i < nx; ++i, ++j) { in Java_org_tensorflow_Graph_addGradients()
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/
Dmax-of-nots.ll56 %nx = xor i8 %x, -1
58 %cmpxy = icmp ult i8 %nx, %ny
59 %minxy = select i1 %cmpxy, i8 %nx, i8 %ny
60 call void @extra_use(i8 %nx)
74 %nx = xor i8 %x, -1
76 %cmpxy = icmp ult i8 %nx, %ny
77 %minxy = select i1 %cmpxy, i8 %nx, i8 %ny
78 call void @extra_use(i8 %nx)
94 %nx = xor i8 %x, -1
98 %cmpxz = icmp ult i8 %nx, %nz
[all …]
/external/deqp/framework/opengl/
DgluTextureTestUtil.cpp291 static inline float projectedTriInterpolate (const tcu::Vec3& s, const tcu::Vec3& w, float nx, floa… in projectedTriInterpolate() argument
293 …return (s[0]*(1.0f-nx-ny)/w[0] + s[1]*ny/w[1] + s[2]*nx/w[2]) / ((1.0f-nx-ny)/w[0] + ny/w[1] + nx/… in projectedTriInterpolate()
302 …nline float triDerivateY (const tcu::Vec3& s, const tcu::Vec3& w, float wy, float height, float nx) in triDerivateY() argument
304 float d = w[1]*w[2]*(height*(nx - 1.0f) + wy) - w[0]*(w[1]*height*nx + w[2]*wy); in triDerivateY()
305 …return (w[0]*w[1]*w[2]*height * (w[2]*(s[0] - s[1])*(nx - 1.0f) + nx*(w[0]*(s[1] - s[2]) + w[1]*(s… in triDerivateY()
486 float nx = wx / dstW; in sampleTextureProjected() local
489 int triNdx = nx + ny >= 1.0f ? 1 : 0; in sampleTextureProjected()
492 float triNx = triNdx ? 1.0f - nx : nx; in sampleTextureProjected()
529 float nx = wx / dstW; in sampleTextureProjected() local
532 int triNdx = nx + ny >= 1.0f ? 1 : 0; in sampleTextureProjected()
[all …]
/external/google-fruit/extras/benchmark/
Dno_di_library_source_generator.py15 import networkx as nx namespace
165 … for class_index in reversed(list(nx.topological_sort(injection_graph))))
171 … for class_index in reversed(list(nx.topological_sort(injection_graph))))
/external/fonttools/Lib/fontTools/pens/
DbasePen.py297 nx, ny = points[0] # first off-curve point
298 impliedStartPoint = (0.5 * (x + nx), 0.5 * (y + ny))
364 nx, ny = points[i+1]
365 impliedPt = (0.5 * (x + nx), 0.5 * (y + ny))
/external/skqp/experimental/docs/
DinterpolatorFunctions.js40 var nx = fx * 27 - ax - dx * 8;
42 var bx = (mx * 2 - nx) / 18;
44 var cx = (nx * 2 - mx) / 18;
/external/skia/experimental/docs/
DinterpolatorFunctions.js40 var nx = fx * 27 - ax - dx * 8;
42 var bx = (mx * 2 - nx) / 18;
44 var cx = (nx * 2 - mx) / 18;
/external/dtc/tests/
Dmultilabel.dts11 n1: nx: node1 {
19 lref = <&nx>;
/external/gemmlowp/test/
Dcorrectness_meta_gemm.cc214 void q_suite(int mi, int ni, int ki, int mx, int nx, int kx, int md, int nd, in q_suite() argument
219 for (int n = ni; n < nx; n += nd) { in q_suite()
228 void f_suite(int mi, int ni, int ki, int mx, int nx, int kx, int md, int nd, in f_suite() argument
233 for (int n = ni; n < nx; n += nd) { in f_suite()
242 void i32_suite(int mi, int ni, int ki, int mx, int nx, int kx, int md, int nd, in i32_suite() argument
247 for (int n = ni; n < nx; n += nd) { in i32_suite()

12345678910>>...12