Home
last modified time | relevance | path

Searched refs:opCode (Results 1 – 8 of 8) sorted by relevance

/external/skia/src/sksl/
DSkSLSPIRVCodeGenerator.h238 void writeOpCode(SpvOp_ opCode, int length, OutputStream& out);
246 void writeInstruction(SpvOp_ opCode, OutputStream& out);
248 void writeInstruction(SpvOp_ opCode, const char* string, OutputStream& out);
250 void writeInstruction(SpvOp_ opCode, int32_t word1, OutputStream& out);
252 void writeInstruction(SpvOp_ opCode, int32_t word1, const char* string, OutputStream& out);
254 void writeInstruction(SpvOp_ opCode, int32_t word1, int32_t word2, const char* string,
257 void writeInstruction(SpvOp_ opCode, int32_t word1, int32_t word2, OutputStream& out);
259 void writeInstruction(SpvOp_ opCode, int32_t word1, int32_t word2, int32_t word3,
262 void writeInstruction(SpvOp_ opCode, int32_t word1, int32_t word2, int32_t word3, int32_t word4,
265 void writeInstruction(SpvOp_ opCode, int32_t word1, int32_t word2, int32_t word3, int32_t word4,
[all …]
DSkSLSPIRVCodeGenerator.cpp180 static String opcode_text(SpvOp_ opCode) { in opcode_text() argument
181 switch (opCode) { in opcode_text()
776 void SPIRVCodeGenerator::writeOpCode(SpvOp_ opCode, int length, OutputStream& out) { in writeOpCode() argument
777 ASSERT(opCode != SpvOpUndef); in writeOpCode()
778 switch (opCode) { in writeOpCode()
824 out << std::endl << opcode_text(opCode) << " "; in writeOpCode()
826 this->writeWord((length << 16) | opCode, out); in writeOpCode()
835 void SPIRVCodeGenerator::writeInstruction(SpvOp_ opCode, OutputStream& out) { in writeInstruction() argument
836 this->writeOpCode(opCode, 1, out); in writeInstruction()
839 void SPIRVCodeGenerator::writeInstruction(SpvOp_ opCode, int32_t word1, OutputStream& out) { in writeInstruction() argument
[all …]
/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
DNanoWSD.java436 OpCode opCode = OpCode.find((byte) (head & 0x0F)); in read() local
440 if (opCode == null) { in read()
442 } else if (opCode.isControlFrame() && !fin) { in read()
446 WebSocketFrame frame = new WebSocketFrame(opCode, fin); in read()
460 private OpCode opCode; field in NanoWSD.WebSocketFrame
474 private WebSocketFrame(OpCode opCode, boolean fin) { in WebSocketFrame() argument
475 setOpCode(opCode); in WebSocketFrame()
479 public WebSocketFrame(OpCode opCode, boolean fin, byte[] payload) { in WebSocketFrame() argument
480 this(opCode, fin, payload, null); in WebSocketFrame()
483 public WebSocketFrame(OpCode opCode, boolean fin, byte[] payload, byte[] maskingKey) { in WebSocketFrame() argument
[all …]
/external/python/cpython2/Mac/Modules/cg/
DCFMLateImport.c292 UInt8 opCode; in UnpackPEFDataSection() local
312 opCode = packedData[offset]; in UnpackPEFDataSection()
314 switch (PEFPkDataOpcode(opCode)) { in UnpackPEFDataSection()
890 UInt16 opCode; in RunRelocationEngine() local
972 opCode = relocInstrTable[state.currentReloc]; in RunRelocationEngine()
973 switch ( PEFRelocBasicOpcode(opCode) ) { in RunRelocationEngine()
979 skipCount = ((opCode >> 6) & 0x00FF); in RunRelocationEngine()
980 relocCount = (opCode & 0x003F); in RunRelocationEngine()
990 runLength = (opCode & 0x01FF) + 1; in RunRelocationEngine()
998 runLength = (opCode & 0x01FF) + 1; in RunRelocationEngine()
[all …]
/external/webrtc/webrtc/examples/objc/AppRTCDemo/third_party/SocketRocket/
DSRWebSocket.m843 - (void)_handleFrameWithData:(NSData *)frameData opCode:(NSInteger)opcode;
917 [self _handleFrameWithData:curData opCode:frame_header.opcode];
920 [self _handleFrameWithData:_currentFrameData opCode:frame_header.opcode];
930 [self _handleFrameWithData:newData opCode:frame_header.opcode];
933 [self _handleFrameWithData:self->_currentFrameData opCode:frame_header.opcode];
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCDuplexInfo.cpp997 static bool isStoreInst(unsigned opCode) { in isStoreInst() argument
998 switch (opCode) { in isStoreInst()
/external/llvm/lib/Target/Hexagon/AsmParser/
DHexagonAsmParser.cpp1460 MCInst makeCombineInst(int opCode, MCOperand &Rdd, in makeCombineInst() argument
1463 TmpInst.setOpcode(opCode); in makeCombineInst()
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmInstructionTests.cpp230 const char* opCode; member
235 , opCode (_opCode) in OpFUnordCase()
325 specializations["OPCODE"] = cases[caseNdx].opCode; in createOpFUnordGroup()