Home
last modified time | relevance | path

Searched defs:n (Results 1 – 25 of 2662) sorted by relevance

12345678910>>...107

/external/valgrind/main/none/tests/ppc64/
Dtwi_tdi.c32 static void twi_0_neg100 ( long n ) { in twi_0_neg100()
36 static void twi_1_neg100 ( long n ) { in twi_1_neg100()
40 static void twi_2_neg100 ( long n ) { in twi_2_neg100()
44 static void twi_3_neg100 ( long n ) { in twi_3_neg100()
48 static void twi_4_neg100 ( long n ) { in twi_4_neg100()
52 static void twi_5_neg100 ( long n ) { in twi_5_neg100()
56 static void twi_6_neg100 ( long n ) { in twi_6_neg100()
60 static void twi_7_neg100 ( long n ) { in twi_7_neg100()
64 static void twi_8_neg100 ( long n ) { in twi_8_neg100()
68 static void twi_9_neg100 ( long n ) { in twi_9_neg100()
[all …]
Dtw_td.c33 static void tw_0 ( long n, long m ) { in tw_0()
37 static void tw_1 ( long n, long m ) { in tw_1()
41 static void tw_2 ( long n, long m ) { in tw_2()
45 static void tw_3 ( long n, long m ) { in tw_3()
49 static void tw_4 ( long n, long m ) { in tw_4()
53 static void tw_5 ( long n, long m ) { in tw_5()
57 static void tw_6 ( long n, long m ) { in tw_6()
61 static void tw_7 ( long n, long m ) { in tw_7()
65 static void tw_8 ( long n, long m ) { in tw_8()
69 static void tw_9 ( long n, long m ) { in tw_9()
[all …]
/external/valgrind/main/none/tests/ppc32/
Dtwi.c32 static void twi_0_neg100 ( long n ) { in twi_0_neg100()
36 static void twi_1_neg100 ( long n ) { in twi_1_neg100()
40 static void twi_2_neg100 ( long n ) { in twi_2_neg100()
44 static void twi_3_neg100 ( long n ) { in twi_3_neg100()
48 static void twi_4_neg100 ( long n ) { in twi_4_neg100()
52 static void twi_5_neg100 ( long n ) { in twi_5_neg100()
56 static void twi_6_neg100 ( long n ) { in twi_6_neg100()
60 static void twi_7_neg100 ( long n ) { in twi_7_neg100()
64 static void twi_8_neg100 ( long n ) { in twi_8_neg100()
68 static void twi_9_neg100 ( long n ) { in twi_9_neg100()
[all …]
Dtw.c33 static void tw_0 ( long n, long m ) { in tw_0()
37 static void tw_1 ( long n, long m ) { in tw_1()
41 static void tw_2 ( long n, long m ) { in tw_2()
45 static void tw_3 ( long n, long m ) { in tw_3()
49 static void tw_4 ( long n, long m ) { in tw_4()
53 static void tw_5 ( long n, long m ) { in tw_5()
57 static void tw_6 ( long n, long m ) { in tw_6()
61 static void tw_7 ( long n, long m ) { in tw_7()
65 static void tw_8 ( long n, long m ) { in tw_8()
69 static void tw_9 ( long n, long m ) { in tw_9()
[all …]
/external/javassist/src/main/javassist/compiler/ast/
DVisitor.java26 public void atASTList(ASTList n) throws CompileError {} in atASTList()
27 public void atPair(Pair n) throws CompileError {} in atPair()
29 public void atFieldDecl(FieldDecl n) throws CompileError {} in atFieldDecl()
30 public void atMethodDecl(MethodDecl n) throws CompileError {} in atMethodDecl()
31 public void atStmnt(Stmnt n) throws CompileError {} in atStmnt()
32 public void atDeclarator(Declarator n) throws CompileError {} in atDeclarator()
34 public void atAssignExpr(AssignExpr n) throws CompileError {} in atAssignExpr()
35 public void atCondExpr(CondExpr n) throws CompileError {} in atCondExpr()
36 public void atBinExpr(BinExpr n) throws CompileError {} in atBinExpr()
37 public void atExpr(Expr n) throws CompileError {} in atExpr()
[all …]
/external/valgrind/main/massif/tests/
Dalloc-fns.c3 void a4(int n) { malloc(n); } in a4()
4 void a3(int n) { a4(n); } in a3()
5 void a2(int n) { a3(n); } in a2()
6 void a1(int n) { a2(n); } in a1()
8 void b4(int n) { malloc(n); } in b4()
9 void b3(int n) { b4(n); } in b3()
10 void b2(int n) { b3(n); } in b2()
11 void b1(int n) { b2(n); } in b1()
13 void c4(int n) { malloc(n); } in c4()
14 void c3(int n) { c4(n); } in c3()
[all …]
Ddeep.c16 void a12(int n) { malloc(n); } in a12()
17 void a11(int n) { a12(n); } in a11()
18 void a10(int n) { a11(n); } in a10()
19 void a9 (int n) { a10(n); } in a9()
20 void a8 (int n) { a9 (n); } in a8()
21 void a7 (int n) { a8 (n); } in a7()
22 void a6 (int n) { a7 (n); } in a6()
23 void a5 (int n) { a6 (n); } in a5()
24 void a4 (int n) { a5 (n); } in a4()
25 void a3 (int n) { a4 (n); } in a3()
[all …]
/external/v8/test/mjsunit/
Darray-iteration.js42 assertArrayEquals([0], a.filter(function(n) { return n == 0; })); argument
48 assertArrayEquals([42,42], a.filter(function(n) { return this.value == n }, o)) argument
52 …assertArrayEquals([42,42], a.filter(function(n, index, array) { array[index] = 43; return 42 == n;… argument
58 assertArrayEquals([], a.filter(function(n, index, array) { array.push(n+1); return n == 2; })); argument
67 var a = a.filter(function(n) { count++; return n == 2; }); argument
81 a.forEach(function(n) { count++; }); argument
87 a.forEach(function(n) { result.push(this.value); }, o); argument
93 a.forEach(function(n, index, array) { array[index] = n + 1; count++; }); argument
101 a.forEach(function(n, index, array) { array.push(n+1); count++; }); argument
109 a.forEach(function(n) { count++; }); argument
[all …]
Dstrict-mode-opt.js33 function strictToBeInlined(n) { argument
39 function nonstrictCallStrict(n) { argument
58 function nonstrictToBeInlined(n) { argument
63 function strictCallNonStrict(n) { argument
81 function strictAssignToUndefined(n) { argument
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
D11.4.8.js79 function ToInteger( n ) { argument
91 function ToInt32( n ) { argument
104 function ToUint32( n ) { argument
121 function ToUint16( n ) { argument
136 function Mask( b, n ) { argument
142 function ToUint32BitString( n ) { argument
154 function ToInt32BitString( n ) { argument
202 function Not( n ) { argument
D11.7.1.js86 function ToInteger( n ) { argument
98 function ToInt32( n ) { argument
111 function ToUint32( n ) { argument
128 function ToUint16( n ) { argument
143 function Mask( b, n ) { argument
149 function ToUint32BitString( n ) { argument
161 function ToInt32BitString( n ) { argument
D11.7.2.js100 function ToInteger( n ) { argument
112 function ToInt32( n ) { argument
125 function ToUint32( n ) { argument
142 function ToUint16( n ) { argument
157 function Mask( b, n ) { argument
163 function ToUint32BitString( n ) { argument
175 function ToInt32BitString( n ) { argument
D11.7.3.js91 function ToInteger( n ) { argument
103 function ToInt32( n ) { argument
116 function ToUint32( n ) { argument
133 function ToUint16( n ) { argument
148 function Mask( b, n ) { argument
154 function ToUint32BitString( n ) { argument
166 function ToInt32BitString( n ) { argument
D11.10-1.js88 function ToInteger( n ) { argument
100 function ToInt32( n ) { argument
113 function ToUint32( n ) { argument
130 function ToUint16( n ) { argument
145 function Mask( b, n ) { argument
151 function ToUint32BitString( n ) { argument
163 function ToInt32BitString( n ) { argument
D11.10-2.js87 function ToInteger( n ) { argument
99 function ToInt32( n ) { argument
112 function ToUint32( n ) { argument
129 function ToUint16( n ) { argument
144 function Mask( b, n ) { argument
150 function ToUint32BitString( n ) { argument
162 function ToInt32BitString( n ) { argument
/external/skia/include/core/
DSkEndian.h79 #define SkEndian_SwapBE16(n) SkEndianSwap16(n) argument
80 #define SkEndian_SwapBE32(n) SkEndianSwap32(n) argument
81 #define SkEndian_SwapLE16(n) (n) argument
82 #define SkEndian_SwapLE32(n) (n) argument
84 #define SkEndian_SwapBE16(n) (n) argument
85 #define SkEndian_SwapBE32(n) (n) argument
86 #define SkEndian_SwapLE16(n) SkEndianSwap16(n) argument
87 #define SkEndian_SwapLE32(n) SkEndianSwap32(n) argument
/external/webkit/Source/WebKit2/Platform/CoreIPC/
DArgumentEncoder.h90 template<> inline void ArgumentEncoder::encode(const bool& n) in encode()
95 template<> inline void ArgumentEncoder::encode(const uint32_t& n) in encode()
100 template<> inline void ArgumentEncoder::encode(const uint64_t& n) in encode()
105 template<> inline void ArgumentEncoder::encode(const int32_t& n) in encode()
110 template<> inline void ArgumentEncoder::encode(const int64_t& n) in encode()
115 template<> inline void ArgumentEncoder::encode(const float& n) in encode()
120 template<> inline void ArgumentEncoder::encode(const double& n) in encode()
/external/flac/libFLAC/
Dwindow.c52 FLAC__int32 n; in FLAC__window_bartlett() local
71 FLAC__int32 n; in FLAC__window_bartlett_hann() local
80 FLAC__int32 n; in FLAC__window_blackman() local
90 FLAC__int32 n; in FLAC__window_blackman_harris_4term_92db_sidelobe() local
100 FLAC__int32 n; in FLAC__window_connes() local
112 FLAC__int32 n; in FLAC__window_flattop() local
122 FLAC__int32 n; in FLAC__window_gauss() local
133 FLAC__int32 n; in FLAC__window_hamming() local
142 FLAC__int32 n; in FLAC__window_hann() local
151 FLAC__int32 n; in FLAC__window_kaiser_bessel() local
[all …]
/external/protobuf/gtest/scripts/
Dgen_gtest_pred_impl.py65 def HeaderPreamble(n): argument
164 def Arity(n): argument
183 def OneTo(n): argument
189 def Iter(n, format, sep=''): argument
205 def ImplementationForArity(n): argument
317 def GenerateHeader(n): argument
413 def TestsForArity(n): argument
709 def GenerateUnitTest(n): argument
/external/chromium/testing/gtest/scripts/
Dgen_gtest_pred_impl.py65 def HeaderPreamble(n): argument
164 def Arity(n): argument
183 def OneTo(n): argument
189 def Iter(n, format, sep=''): argument
205 def ImplementationForArity(n): argument
315 def GenerateHeader(n): argument
411 def TestsForArity(n): argument
706 def GenerateUnitTest(n): argument
/external/gtest/scripts/
Dgen_gtest_pred_impl.py65 def HeaderPreamble(n): argument
164 def Arity(n): argument
183 def OneTo(n): argument
189 def Iter(n, format, sep=''): argument
205 def ImplementationForArity(n): argument
317 def GenerateHeader(n): argument
413 def TestsForArity(n): argument
709 def GenerateUnitTest(n): argument
/external/webkit/Source/WebCore/xml/
DXPathStep.cpp244 for (Node* n = context->firstChild(); n; n = n->nextSibling()) in nodesInAxis() local
252 for (Node* n = context->firstChild(); n; n = n->traverseNextNode(context)) in nodesInAxis() local
258 Element* n = static_cast<Attr*>(context)->ownerElement(); in nodesInAxis() local
262 ContainerNode* n = context->parentNode(); in nodesInAxis() local
268 Node* n = context; in nodesInAxis() local
285 for (Node* n = context->nextSibling(); n; n = n->nextSibling()) in nodesInAxis() local
294 for (Node* n = context->previousSibling(); n; n = n->previousSibling()) in nodesInAxis() local
308 for (Node* n = p->nextSibling(); n; n = n->nextSibling()) { in nodesInAxis() local
322 Node* n = context; in nodesInAxis() local
338 …RefPtr<Node> n = static_cast<Element*>(context)->getAttributeNodeNS(m_nodeTest.namespaceURI(), m_n… in nodesInAxis() local
[all …]
/external/wpa_supplicant_6/wpa_supplicant/src/utils/
Dcommon.h184 #define le_to_host16(n) (n) argument
185 #define host_to_le16(n) (n) argument
186 #define be_to_host16(n) wpa_swap_16(n) argument
187 #define host_to_be16(n) wpa_swap_16(n) argument
188 #define le_to_host32(n) (n) argument
189 #define be_to_host32(n) wpa_swap_32(n) argument
190 #define host_to_be32(n) wpa_swap_32(n) argument
212 #define le_to_host16(n) ((__force u16) (le16) (n)) argument
213 #define host_to_le16(n) ((__force le16) (u16) (n)) argument
214 #define be_to_host16(n) bswap_16((__force u16) (be16) (n)) argument
[all …]
/external/valgrind/main/memcheck/tests/
Dleak-cycle.c6 struct n { struct
7 struct n *l; argument
8 struct n *r; argument
10 char padding[ 2 * (8 - sizeof(struct n*)) ]; argument
15 struct n *n = malloc(sizeof(struct n)); in mk() local
/external/chromium/base/threading/
Dplatform_thread_unittest.cc43 for (size_t n = 0; n < arraysize(thread); n++) in TEST() local
45 for (size_t n = 0; n < arraysize(thread); n++) in TEST() local
47 for (size_t n = 0; n < arraysize(thread); n++) in TEST() local
49 for (size_t n = 0; n < arraysize(thread); n++) in TEST() local
94 for (size_t n = 0; n < arraysize(thread); n++) in TEST() local
96 for (size_t n = 0; n < arraysize(thread); n++) in TEST() local
98 for (size_t n = 0; n < arraysize(thread); n++) in TEST() local
100 for (size_t n = 0; n < arraysize(thread); n++) { in TEST() local

12345678910>>...107