HomeSort by relevance Sort by last modified time
    Searched refs:n1 (Results 176 - 200 of 802) sorted by null

1 2 3 4 5 6 78 91011>>

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/mips/dspr2/
vp9_convolve8_avg_horiz_dspr2.c 36 uint32_t n1, n2, n3, n4; local
88 "preceu.ph.qbr %[n1], %[tp2] \n\t"
92 "dpa.w.ph $ac3, %[n1], %[vector1b] \n\t"
104 "preceu.ph.qbr %[n1], %[tn1] \n\t"
110 "dpa.w.ph $ac2, %[n1], %[vector4b] \n\t"
130 [n1] "=&r" (n1), [n2] "=&r" (n2), [n3] "=&r" (n3), [n4] "=&r" (n4),
157 uint32_t p1, p2, p3, p4, n1; local
196 "preceu.ph.qbl %[n1], %[tn2] \n\t"
213 "dpa.w.ph $ac1, %[n1], %[vector4b] \n\t
    [all...]
vp9_convolve8_horiz_dspr2.c 36 uint32_t n1, n2, n3, n4; local
85 "preceu.ph.qbr %[n1], %[tp2] \n\t"
89 "dpa.w.ph $ac3, %[n1], %[vector1b] \n\t"
99 "preceu.ph.qbr %[n1], %[tn1] \n\t"
103 "dpa.w.ph $ac2, %[n1], %[vector4b] \n\t"
119 [n1] "=&r" (n1), [n2] "=&r" (n2), [n3] "=&r" (n3), [n4] "=&r" (n4),
146 uint32_t p1, p2, p3, p4, n1; local
183 "preceu.ph.qbl %[n1], %[tn2] \n\t"
199 "dpa.w.ph $ac1, %[n1], %[vector4b] \n\t
    [all...]
  /external/clang/test/CodeGenCXX/
constructor-init.cpp 60 N n1; local
61 n1.PR();
  /external/clang/test/Sema/
struct-packed-align.c 135 extern int n1[sizeof(struct nS) == 16 ? 1 : -1];
138 extern int n1[sizeof(struct nS) == 9 ? 1 : -1];
  /external/libvpx/libvpx/build/make/
version.sh 36 changelog_version=`head -n1 "${p}/CHANGELOG" | awk '{print $2}'`
  /frameworks/native/opengl/tests/hwc/
hwcRects.cpp 264 for (unsigned int n1 = 0; n1 < argNext.length(); n1++) {
265 switch(argNext[n1]) {
550 for (unsigned int n1 = 0; n1 < NUMA(hwcTestGraphicFormat); n1++) {
551 testPrintE(" %s", hwcTestGraphicFormat[n1].desc);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
version.sh 36 changelog_version=`head -n1 "${p}/CHANGELOG" | awk '{print $2}'`
  /prebuilts/go/darwin-x86/src/index/suffixarray/
suffixarray.go 229 // increased value n1, but only if Lookup returned all the requested
232 for n1 := n; ; n1 += 2 * (n - len(result)) /* overflow ok */ {
233 indices := x.Lookup(lit, n1)
257 if len(result) >= n || len(indices) != n1 {
259 // (n and n1 can be negative)
276 for n1 := n; ; n1 += 2 * (n - len(result)) /* overflow ok */ {
277 indices := x.Lookup(lit, n1)
297 if len(result) >= n || len(indices) != n1 {
    [all...]
  /prebuilts/go/linux-x86/src/index/suffixarray/
suffixarray.go 229 // increased value n1, but only if Lookup returned all the requested
232 for n1 := n; ; n1 += 2 * (n - len(result)) /* overflow ok */ {
233 indices := x.Lookup(lit, n1)
257 if len(result) >= n || len(indices) != n1 {
259 // (n and n1 can be negative)
276 for n1 := n; ; n1 += 2 * (n - len(result)) /* overflow ok */ {
277 indices := x.Lookup(lit, n1)
297 if len(result) >= n || len(indices) != n1 {
    [all...]
  /cts/apps/CameraITS/tests/scene1/
test_capture_result.py 90 def is_close_float(n1, n2):
91 return abs(n1 - n2) < 0.05
93 def is_close_rational(n1, n2):
94 return is_close_float(its.objects.rational_to_float(n1),
  /external/bzip2/
huffman.c 72 Int32 nNodes, nHeap, n1, n2, i, j, k; local
101 n1 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP(1);
104 parent[n1] = parent[n2] = nNodes;
105 weight[nNodes] = ADDWEIGHTS(weight[n1], weight[n2]);
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/
tracing_backend_unittest.py 213 n1 = 1000
215 t1 = self._MeasureReadTime(n1)
218 n1 *= 5
219 t2 = self._MeasureReadTime(n1 * 10)
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p3-0x.cpp 43 int n1 = f(i); member in namespace:std_example
  /external/clang/test/Modules/
macros2.c 71 int n1 = TOP_OTHER_REDEF1; // expected-warning{{ambiguous expansion of macro 'TOP_OTHER_REDEF1'}} variable
  /external/clang/tools/diag-build/
diag-build.sh 103 head -n1 |
  /external/guice/extensions/mini/test/com/google/inject/mini/
MiniGuiceTest.java 178 assertSame(m.f1, m.n1.f1);
179 assertSame(m.f1, m.n1.f2);
182 assertSame(m.f1, m.n1.fProvider.get());
187 @Inject N n1; field in class:MiniGuiceTest.M
  /external/libcxx/test/std/experimental/string.view/string.view.ops/
compare.size_size_sv.pass.cpp 13 // constexpr int compare(size_type pos1, size_type n1, basic_string_view str) const;
23 void test1 ( std::experimental::basic_string_view<CharT> sv1, size_t pos1, size_t n1,
28 assert ( sign( sv1.compare(pos1, n1, sv2)) == sign(expected));
36 void test ( const CharT *s1, size_t pos1, size_t n1, const CharT *s2, int expected ) {
41 test1(sv1, pos1, n1, sv2, expected);
  /external/ltrace/testsuite/ltrace.main/
system_calls.exp 98 set n1 [GetDefault $d1 $key 0]
100 set sum [expr $n1 - $n2]
  /external/v8/test/mjsunit/
this-property-assignment.js 37 var n1 = new Node();
38 assertEquals(3, n1.a);
  /external/v8/test/unittests/compiler/
node-properties-unittest.cc 23 Node* NewMockNode(const Operator* op, Node* n1) {
24 Node* nodes[] = {n1};
27 Node* NewMockNode(const Operator* op, Node* n1, Node* n2) {
28 Node* nodes[] = {n1, n2};
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
sinit.go 106 // n and initlist = n1 <- ... <- nv <- ... <- n <- ...
116 // Print nv -> ... -> n1 -> n.
352 n1 := *l
353 n1.Xoffset = l.Xoffset + int64(Array_array)
354 gdata(&n1, Nod(OADDR, a, nil), Widthptr)
355 n1.Xoffset = l.Xoffset + int64(Array_nel)
356 gdata(&n1, r.Right, Widthint)
357 n1.Xoffset = l.Xoffset + int64(Array_cap)
358 gdata(&n1, r.Right, Widthint)
367 n1 := *
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
sinit.go 103 // n and initlist = n1 <- ... <- nv <- ... <- n <- ...
113 // Print nv -> ... -> n1 -> n.
349 n1 := *l
350 n1.Xoffset = l.Xoffset + int64(Array_array)
351 gdata(&n1, Nod(OADDR, a, nil), Widthptr)
352 n1.Xoffset = l.Xoffset + int64(Array_nel)
353 gdata(&n1, r.Right, Widthint)
354 n1.Xoffset = l.Xoffset + int64(Array_cap)
355 gdata(&n1, r.Right, Widthint)
364 n1 := *
    [all...]
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
sinit.go 106 // n and initlist = n1 <- ... <- nv <- ... <- n <- ...
116 // Print nv -> ... -> n1 -> n.
352 n1 := *l
353 n1.Xoffset = l.Xoffset + int64(Array_array)
354 gdata(&n1, Nod(OADDR, a, nil), Widthptr)
355 n1.Xoffset = l.Xoffset + int64(Array_nel)
356 gdata(&n1, r.Right, Widthint)
357 n1.Xoffset = l.Xoffset + int64(Array_cap)
358 gdata(&n1, r.Right, Widthint)
367 n1 := *
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
sinit.go 103 // n and initlist = n1 <- ... <- nv <- ... <- n <- ...
113 // Print nv -> ... -> n1 -> n.
349 n1 := *l
350 n1.Xoffset = l.Xoffset + int64(Array_array)
351 gdata(&n1, Nod(OADDR, a, nil), Widthptr)
352 n1.Xoffset = l.Xoffset + int64(Array_nel)
353 gdata(&n1, r.Right, Widthint)
354 n1.Xoffset = l.Xoffset + int64(Array_cap)
355 gdata(&n1, r.Right, Widthint)
364 n1 := *
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
cris.exp 163 $line junk leftpart n1 n2 n3 n4 rightpart
164 # verbose "IM $n1 $n2 $n3 $n4 ($imcode1 $imcode2 $imcode3 $imcode01 $imcode02 $imcode03)"
166 set n1 [expr 0x$n1 - $imcode01 ]
170 set n [expr ($imcode1 << 12) + ($n1 << 12) + (0x$n2 << 8) \
177 $line junk leftpart n1 n2 n3 n4 rightpart
178 # verbose "IR $n1 $n2 $n3 $n4 ($ircode1 $ircode2 $ircode3 $ircode01 $ircode02 $ircode03)"
180 set n1 [expr 0x$n1 - $ircode01 ]
184 set n [expr ($ircode1 << 12) + ($n1 << 12) + (0x$n2 << 8)
    [all...]

Completed in 1069 milliseconds

1 2 3 4 5 6 78 91011>>