Searched defs:opcode (Results 1 - 25 of 36) sorted by last modified time

12

/frameworks/rs/rsov/compiler/spirit/
H A Dcore_defs.h64 OpCodeAndWordCount(uint32_t opcode, uint32_t wordCount) argument
65 : mOpCode((uint16_t)opcode), mWordCount((uint16_t)wordCount) {}
H A Dinstructions.h76 bool DeserializeFirstWord(InputWordStream &IS, OpCode opcode) { argument
83 if (codeAndCount.mOpCode != opcode) {
/frameworks/native/libs/vr/libpdx/
H A Dclient.cpp83 Status<void> Client::SendImpulse(int opcode) { argument
90 status = channel_->SendImpulse(opcode, nullptr, 0);
95 Status<void> Client::SendImpulse(int opcode, const void* buffer, argument
103 status = channel_->SendImpulse(opcode, buffer, length);
143 void Transaction::SendTransaction(int opcode, Status<void>* ret, argument
157 state_, opcode, send_vector, send_count, receive_vector, receive_count);
167 void Transaction::SendTransaction(int opcode, Status<int>* ret, argument
183 state_, opcode, send_vector, send_count, receive_vector, receive_count);
188 void Transaction::SendTransaction(int opcode, Status<LocalHandle>* ret, argument
204 state_, opcode, send_vecto
209 SendTransaction(int opcode, Status<LocalChannelHandle>* ret, const iovec* send_vector, size_t send_count, const iovec* receive_vector, size_t receive_count) argument
[all...]
/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dclient.h73 Status<void> SendImpulse(int opcode);
74 Status<void> SendImpulse(int opcode, const void* buffer, size_t length);
213 Status<T> Send(int opcode) { argument
214 return SendVector<T>(opcode, nullptr, 0, nullptr, 0);
218 Status<T> Send(int opcode, const void* send_buffer, size_t send_length, argument
224 return SendVector<T>(opcode, send ? &send_vector : nullptr, send ? 1 : 0,
229 Status<T> SendVector(int opcode, const iovec* send_vector, size_t send_count, argument
232 SendTransaction(opcode, &ret, send_vector, send_count, receive_vector,
238 Status<T> SendVector(int opcode, const iovec (&send_vector)[send_count], argument
240 return SendVector<T>(opcode, send_vecto
245 SendVector(int opcode, const iovec (&send_vector)[send_count], std::nullptr_t) argument
251 SendVector(int opcode, std::nullptr_t, const iovec (&receive_vector)[receive_count]) argument
[all...]
/frameworks/native/libs/vr/libpdx_default_transport/
H A Dpdx_benchmarks.cpp174 int opcode = BenchmarkOps::Read; member in struct:Options
212 // ProgramOptions.opcode.
215 ProgramOptions.opcode = BenchmarkOps::Read;
217 ProgramOptions.opcode = BenchmarkOps::Write;
219 ProgramOptions.opcode = BenchmarkOps::Echo;
221 ProgramOptions.opcode = BenchmarkOps::WriteVector;
223 ProgramOptions.opcode = BenchmarkOps::EchoVector;
225 ProgramOptions.opcode = BenchmarkOps::Quit;
227 ProgramOptions.opcode = BenchmarkOps::Nop;
229 ProgramOptions.opcode
[all...]
/frameworks/native/libs/vr/libpdx_uds/
H A Dclient_channel.cpp90 TransactionState* transaction_state, int opcode,
94 InitRequest(&transaction_state->request, opcode, send_len, max_recv_len,
162 Status<void> ClientChannel::SendImpulse(int opcode, const void* buffer, argument
173 InitRequest(&request, opcode, length, 0, true);
178 Status<int> ClientChannel::SendAndReceive(void* transaction_state, int opcode, argument
195 opcode, send_vector, send_count, max_recv_len);
210 Status<int> ClientChannel::SendWithInt(void* transaction_state, int opcode, argument
215 return SendAndReceive(transaction_state, opcode, send_vector, send_count,
220 void* transaction_state, int opcode, const iovec* send_vector,
223 SendAndReceive(transaction_state, opcode, send_vecto
89 SendRequest(const BorrowedHandle& socket_fd, TransactionState* transaction_state, int opcode, const iovec* send_vector, size_t send_count, size_t max_recv_len) argument
219 SendWithFileHandle( void* transaction_state, int opcode, const iovec* send_vector, size_t send_count, const iovec* receive_vector, size_t receive_count) argument
239 SendWithChannelHandle( void* transaction_state, int opcode, const iovec* send_vector, size_t send_count, const iovec* receive_vector, size_t receive_count) argument
[all...]
H A Dipc_helper.cpp401 int opcode, uint32_t send_len, uint32_t max_recv_len,
403 request->op = opcode;
400 InitRequest(android::pdx::uds::RequestHeader<BorrowedHandle>* request, int opcode, uint32_t send_len, uint32_t max_recv_len, bool is_impulse) argument
/frameworks/native/opengl/libagl/
H A Dstate.cpp549 void glLogicOp(GLenum opcode) { argument
551 c->rasterizer.procs.logicOp(c, opcode);
/frameworks/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAbstractClassAdapter.java248 public void visitTypeInsn(int opcode, String type) { argument
255 super.visitTypeInsn(opcode, type);
259 public void visitFieldInsn(int opcode, String owner, String name, String desc) { argument
263 super.visitFieldInsn(opcode, owner, name, desc);
267 public void visitMethodInsn(int opcode, String owner, String name, String desc, argument
277 super.visitMethodInsn(opcode, owner, name, desc, itf);
H A DAfterConstructorMethodAdapter.java78 public void visitInsn(int opcode) { argument
79 if (opcode == Opcodes.RETURN) {
83 super.visitInsn(opcode);
H A DAsmAnalyzer.java650 public void visitFieldInsn(int opcode, String owner, String name, String desc) { argument
668 public void visitInsn(int opcode) { argument
673 public void visitIntInsn(int opcode, int operand) { argument
678 public void visitJumpInsn(int opcode, Label label) { argument
722 public void visitMethodInsn(int opcode, String owner, String name, String desc, argument
768 public void visitTypeInsn(int opcode, String type) { argument
775 public void visitVarInsn(int opcode, int var) { argument
H A DDelegateMethodAdapter.java354 public void visitInsn(int opcode) { argument
356 mOrgWriter.visitInsn(opcode);
375 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { argument
377 mOrgWriter.visitMethodInsn(opcode, owner, name, desc, itf);
382 public void visitFieldInsn(int opcode, String owner, String name, String desc) { argument
384 mOrgWriter.visitFieldInsn(opcode, owner, name, desc);
403 public void visitIntInsn(int opcode, int operand) { argument
405 mOrgWriter.visitIntInsn(opcode, operand);
410 public void visitJumpInsn(int opcode, Label label) { argument
412 mOrgWriter.visitJumpInsn(opcode, labe
453 visitTypeInsn(int opcode, String type) argument
460 visitVarInsn(int opcode, int var) argument
[all...]
H A DDependencyFinder.java528 public void visitFieldInsn(int opcode, String owner, String name, String desc) { argument
546 public void visitInsn(int opcode) { argument
551 public void visitIntInsn(int opcode, int operand) { argument
556 public void visitJumpInsn(int opcode, Label label) { argument
600 public void visitMethodInsn(int opcode, String owner, String name, String desc, argument
642 public void visitTypeInsn(int opcode, String type) { argument
649 public void visitVarInsn(int opcode, int var) { argument
H A DReplaceMethodCallsAdapter.java90 mi.opcode = Opcodes.INVOKESTATIC;
179 mi.opcode = Opcodes.INVOKESTATIC;
252 public void visitMethodInsn(int opcode, String owner, String name, String desc, argument
256 MethodInformation mi = new MethodInformation(opcode, owner, name, desc);
258 opcode = mi.opcode;
265 super.visitMethodInsn(opcode, owner, name, desc, itf);
270 public int opcode; field in class:ReplaceMethodCallsAdapter.MethodInformation
275 public MethodInformation(int opcode, String owner, String name, String desc) { argument
276 this.opcode
[all...]
H A DStubMethodAdapter.java257 public void visitInsn(int opcode) { argument
259 switch (opcode) {
272 mParentVisitor.visitInsn(opcode);
292 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { argument
294 mParentVisitor.visitMethodInsn(opcode, owner, name, desc, itf);
299 public void visitFieldInsn(int opcode, String owner, String name, String desc) { argument
301 mParentVisitor.visitFieldInsn(opcode, owner, name, desc);
320 public void visitIntInsn(int opcode, int operand) { argument
322 mParentVisitor.visitIntInsn(opcode, operand);
327 public void visitJumpInsn(int opcode, Labe argument
370 visitTypeInsn(int opcode, String type) argument
377 visitVarInsn(int opcode, int var) argument
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64InsnHelpers.h212 unsigned opcode = (insn >> 12) & 0xf; local
215 switch (opcode) {
238 } // switch (opcode)
241 unsigned opcode = (insn >> 13) & 0x7; local
244 switch (opcode) {
262 } // switch (opcode)
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DDelayedMessageBuffer.java77 boolean isBuffered(int opcode) { argument
79 if (message.getOpcode() == opcode) {
H A DDeviceDiscoveryAction.java209 private boolean mayProcessMessageIfCached(int address, int opcode) { argument
210 HdmiCecMessage message = getCecMessageCache().getMessage(address, opcode);
H A DHdmiCecController.java229 private static byte[] buildBody(int opcode, byte[] params) { argument
231 body[0] = (byte) opcode;
H A DHdmiCecMessage.java26 * source and destination address, command (or opcode), and optional parameters.
40 public HdmiCecMessage(int source, int destination, int opcode, byte[] params) { argument
43 mOpcode = opcode & 0xFF;
68 * Return the opcode field of the message. It is the type of the message that
71 * @return opcode
79 * from opcode to opcode, and is used together with opcode to describe
102 private static String opcodeToString(int opcode) { argument
103 switch (opcode) {
[all...]
H A DHdmiCecMessageBuilder.java35 * @param body body of message. It includes opcode.
39 byte opcode = body[0];
41 return new HdmiCecMessage(src, dest, opcode, params);
46 * 1 byte original opcode and 1 byte reason fields with basic fields.
50 * @param originalOpcode original opcode causing feature abort
575 * @param opcode opcode for a message
578 private static HdmiCecMessage buildCommand(int src, int dest, int opcode) { argument
579 return new HdmiCecMessage(src, dest, opcode, HdmiCecMessage.EMPTY_PARAM);
587 * @param opcode opcod
591 buildCommand(int src, int dest, int opcode, byte[] params) argument
[all...]
H A DHdmiCecMessageCache.java23 * Cache for incoming message. It caches {@link HdmiCecMessage} with source address and opcode
46 * {@code opcode}.
49 * @param opcode opcode of message
51 * opcode}
53 public HdmiCecMessage getMessage(int address, int opcode) { argument
59 return messages.get(opcode);
79 * Cache incoming {@link HdmiCecMessage}. If opcode of message is not listed on
85 int opcode = message.getOpcode();
86 if (!isCacheable(opcode)) {
99 isCacheable(int opcode) argument
[all...]
H A DHdmiCecMessageValidator.java189 private void addValidationInfo(int opcode, ParameterValidator validator, int addrType) { argument
190 mValidationInfo.append(opcode, new ValidationInfo(validator, addrType));
194 int opcode = message.getOpcode();
195 ValidationInfo info = mValidationInfo.get(opcode);
H A DHdmiCecStandbyModeHandler.java147 private void addHandler(int opcode, CecMessageHandler handler) { argument
148 mCecMessageHandlers.put(opcode, handler);

Completed in 255 milliseconds

12