Searched refs:xs (Results 1 - 25 of 120) sorted by relevance

12345

/external/clang/test/CXX/lex/lex.pptoken/
H A Dp3-0x.cpp13 const char xs[] = R"(\
15 static_assert(sizeof(xs) == 12, "did not revert all changes");
/external/clang/test/Sema/
H A Dwarn-unsequenced.c11 int xs[10]; local
19 a = xs[++a]; // expected-warning {{multiple unsequenced modifications}}
20 a = xs[a++]; // expected-warning {{multiple unsequenced modifications}}
43 (xs[2] && (a = 0)) + a; // ok
47 (xs[3] || (a = 0)) + a; // ok
51 (xs[4] ? a : ++a) + a; // ok
54 (xs[5] ? ++a : ++a) + a; // FIXME: warn here
56 (++a, xs[6] ? ++a : 0) + a; // expected-warning {{unsequenced modification and access}}
62 int *p = xs;
79 (xs[
[all...]
/external/clang/test/SemaCXX/
H A Dwarn-unsequenced.cpp15 int xs[10]; local
26 a = xs[++a]; // ok
27 a = xs[a++]; // expected-warning {{multiple unsequenced modifications}}
28 (a ? xs[0] : xs[1]) = ++a; // expected-warning {{unsequenced modification and access}}
60 (xs[2] && (a = 0)) + a; // ok
64 (xs[3] || (a = 0)) + a; // ok
68 (xs[4] ? a : ++a) + a; // ok
73 (xs[5] ? ++a : ++a) + a; // FIXME: warn here
75 (++a, xs[
[all...]
/external/okhttp/okio/okio/src/test/java/okio/
H A DSegmentSharingTest.java29 private static final String xs = TestUtil.repeat('x', Segment.SIZE / 2 + 1); field in class:SegmentSharingTest
39 ByteString byteString = concatenateBuffers(xs, ys, zs).snapshot();
40 assertEquivalent(byteString, concatenateBuffers(xs, ys + zs).snapshot());
41 assertEquivalent(byteString, concatenateBuffers(xs + ys + zs).snapshot());
42 assertEquivalent(byteString, ByteString.encodeUtf8(xs + ys + zs));
46 ByteString byteString = concatenateBuffers(xs, ys, zs).snapshot();
48 assertEquals('x', byteString.getByte(xs.length() - 1));
49 assertEquals('y', byteString.getByte(xs.length()));
50 assertEquals('y', byteString.getByte(xs.length() + ys.length() - 1));
51 assertEquals('z', byteString.getByte(xs
[all...]
/external/deqp/framework/platform/android/
H A DtcuAndroidExecService.hpp44 class TestProcess : public xs::TestProcess
73 xs::posix::FileReader m_logReader;
76 class ExecutionServer : public xs::ExecutionServer
79 ExecutionServer (JavaVM* vm, xs::TestProcess* testProcess, deSocketFamily family, int port, RunMode runMode);
80 xs::ConnectionHandler* createHandler (de::Socket* socket, const de::SocketAddress& clientAddress);
86 class ConnectionHandler : public xs::ExecutionRequestHandler
89 ConnectionHandler (JavaVM* vm, xs::ExecutionServer* server, de::Socket* socket);
99 ServerThread (JavaVM* vm, xs::TestProcess* testProcess, deSocketFamily family, int port);
H A DtcuAndroidExecService.cpp71 , m_logReader (xs::LOG_BUFFER_BLOCK_SIZE, xs::LOG_BUFFER_NUM_BLOCKS)
165 throw xs::TestProcessException(std::string("Failed to remove '") + LOG_FILE_NAME + "'");
183 throw xs::TestProcessException("Failed to launch activity");
258 if (deGetMicroseconds() - m_launchTime > xs::LOG_FILE_TIMEOUT*1000)
291 ExecutionServer::ExecutionServer (JavaVM* vm, xs::TestProcess* testProcess, deSocketFamily family, int port, RunMode runMode)
292 : xs::ExecutionServer (testProcess, family, port, runMode)
297 xs::ConnectionHandler* ExecutionServer::createHandler (de::Socket* socket, const de::SocketAddress& clientAddress)
305 ConnectionHandler::ConnectionHandler (JavaVM* vm, xs::ExecutionServer* server, de::Socket* socket)
306 : xs
[all...]
/external/deqp/execserver/tools/
H A DxsMain.cpp58 xs::Win32TestProcess testProcess;
60 xs::PosixTestProcess testProcess;
80 const xs::ExecutionServer::RunMode runMode = cmdLine.getOption<opt::SingleExec>()
81 ? xs::ExecutionServer::RUNMODE_SINGLE_EXEC
82 : xs::ExecutionServer::RUNMODE_FOREVER;
84 xs::ExecutionServer server (&testProcess, DE_SOCKETFAMILY_INET4, port, runMode);
/external/skia/src/core/
H A DSkLinearBitmapPipeline_matrix.h20 void processPoints(Sk4s* xs, Sk4s* ys) const { argument
21 *xs = *xs + fXOffset;
42 void processPoints(Sk4s* xs, Sk4s* ys) const { argument
43 *xs = *xs * fXScale + fXOffset;
69 void processPoints(Sk4s* xs, Sk4s* ys) const { argument
70 Sk4s newXs = fXScale * *xs + fXSkew * *ys + fXOffset;
71 Sk4s newYs = fYSkew * *xs + fYScale * *ys + fYOffset;
73 *xs
95 processPoints(Sk4s* xs, Sk4s* ys) const argument
[all...]
H A DSkLinearBitmapPipeline_tile.h38 void tileXPoints(Sk4s* xs) { argument
39 *xs = Sk4s::Min(Sk4s::Max(*xs, SK_ScalarHalf), fXMaxPixel);
40 assertTiled(*xs, fXMax);
159 void tileXPoints(Sk4s* xs) { argument
160 Sk4s divX = *xs * fXInvMax;
161 Sk4s modX = *xs - divX.floor() * fXMax;
162 *xs = Sk4s::Min(fXCap, modX);
163 assertTiled(*xs, fXMax);
253 void tileXPoints(Sk4s* xs) { argument
361 tileXPoints(Sk4s* xs) argument
[all...]
H A DSkLinearBitmapPipeline_core.h171 // Instead of using xs = xs + dx every round, this uses xs = i * dx + X(start). This
173 Sk4f xs = startXs + mults * dXs; local
175 stage->pointList4(xs, ys);
178 xs = mults * dXs + startXs;
183 stage->pointListFew(count, xs, ys);
200 // Take the first n (where 0 < n && n < 4) items from xs and ys and sample those points. For
201 // nearest neighbor, that means just taking the floor xs and ys. For bilerp, this means
203 virtual void SK_VECTORCALL pointListFew(int n, Sk4s xs, Sk4
[all...]
/external/deqp/execserver/
H A DxsTestDriver.hpp32 namespace xs namespace
38 TestDriver (xs::TestProcess* testProcess);
72 xs::TestProcess* m_process;
78 } // xs
H A DxsDefs.hpp32 namespace xs namespace
83 } // xs
85 #define XS_FAIL(MSG) throw xs::Error(MSG, "", __FILE__, __LINE__)
86 #define XS_CHECK(X) do { if ((!deGetFalse() && (X)) ? DE_FALSE : DE_TRUE) throw xs::Error(NULL, #X, __FILE__, __LINE__); } while(deGetFalse())
87 #define XS_CHECK_MSG(X, MSG) do { if ((!deGetFalse() && (X)) ? DE_FALSE : DE_TRUE) throw xs::Error(MSG, #X, __FILE__, __LINE__); } while(deGetFalse())
H A DxsPosixFileReader.hpp30 namespace xs namespace
56 } // xs
H A DxsDefs.cpp28 namespace xs namespace
46 } // xs
H A DxsTestProcess.hpp30 namespace xs namespace
58 } // xs
H A DxsExecutionServer.hpp34 namespace xs namespace
48 ExecutionServer (xs::TestProcess* testProcess, deSocketFamily family, int port, RunMode runMode);
127 } // xs
/external/deqp/executor/
H A DxeTcpIpLink.cpp40 static void writeMessageHeader (de::BlockBuffer<deUint8>& dst, xs::MessageType type, int messageSize)
42 deUint8 hdr[xs::MESSAGE_HEADER_SIZE];
43 xs::Message::writeHeader(type, messageSize, &hdr[0], xs::MESSAGE_HEADER_SIZE);
44 dst.write(xs::MESSAGE_HEADER_SIZE, &hdr[0]);
49 writeMessageHeader(dst, xs::MESSAGETYPE_KEEPALIVE, xs::MESSAGE_HEADER_SIZE);
59 int totalSize = xs::MESSAGE_HEADER_SIZE + nameSize + paramsSize + workDirSize + caseListSize;
61 writeMessageHeader(dst, xs::MESSAGETYPE_EXECUTE_BINARY, totalSize);
71 writeMessageHeader(dst, xs
[all...]
/external/clang/test/CXX/temp/temp.decls/temp.alias/
H A Dp3.cpp13 template<typename ...T> void f(U<T> ...xs);
/external/kernel-headers/original/uapi/linux/
H A Dtiocl.h14 unsigned short xs; /* X start */ member in struct:tiocl_selection
/external/clang/test/CXX/stmt.stmt/stmt.dcl/
H A Dp3.cpp16 X xs[16]; local
H A Dp3-0x.cpp14 X xs[16]; local
/external/speex/libspeex/
H A Dlpc_bfin.h45 const spx_word16_t *xs; local
71 xs = x+lag-1;
109 : : "m" (xs), "m" (x), "m" (ac32top), "m" (N_lag), "m" (lag_1), "m" (nshift)
/external/blktrace/btt/
H A Dbtt_plot.py109 def avg(xs, ys):
122 if len(xs) < 1000:
123 return xs, ys
125 axs = [xs[0]]
127 _xs = [xs[0]]
130 x_range = (xs[-1] - xs[0]) / 100
132 if (xs[idx] - _xs[0]) > x_range:
137 _xs = [xs[idx]]
140 _xs.append(xs[id
[all...]
/external/clang/bindings/python/tests/cindex/
H A Dtest_cursor.py120 xs = get_cursors(tu, 'X')
122 assert len(xs) == 4
123 assert xs[0].kind == CursorKind.CLASS_DECL
124 cs = xs[1:]
139 xs = get_cursors(tu, 'X')
140 assert xs[0].kind == CursorKind.CLASS_DECL
141 cs = xs[1:]
155 xs = get_cursors(tu, 'X')
156 assert xs[0].kind == CursorKind.CLASS_DECL
157 cs = xs[
[all...]
/external/skia/tests/
H A DSkLinearBitmapPipelineTest.cpp118 void SK_VECTORCALL pointListFew(int n, Sk4s xs, Sk4s ys) { argument
120 if (n >= 1) storePoint({xs[0], ys[0]});
121 if (n >= 2) storePoint({xs[1], ys[1]});
122 if (n >= 3) storePoint({xs[2], ys[2]});
125 void SK_VECTORCALL pointList4(Sk4s xs, Sk4s ys) { argument
126 storePoint({xs[0], ys[0]});
127 storePoint({xs[1], ys[1]});
128 storePoint({xs[2], ys[2]});
129 storePoint({xs[3], ys[3]});
150 Sk4f xs local
[all...]

Completed in 419 milliseconds

12345