Home
last modified time | relevance | path

Searched refs:nextop (Results 1 – 10 of 10) sorted by relevance

/external/llvm-project/mlir/examples/toy/Ch5/mlir/
DShapeInferencePass.cpp66 auto nextop = llvm::find_if(opWorklist, allOperandsInferred); in runOnFunction() local
67 if (nextop == opWorklist.end()) in runOnFunction()
70 Operation *op = *nextop; in runOnFunction()
/external/llvm-project/mlir/examples/toy/Ch4/mlir/
DShapeInferencePass.cpp66 auto nextop = llvm::find_if(opWorklist, allOperandsInferred); in runOnFunction() local
67 if (nextop == opWorklist.end()) in runOnFunction()
70 Operation *op = *nextop; in runOnFunction()
/external/llvm-project/mlir/examples/toy/Ch7/mlir/
DShapeInferencePass.cpp66 auto nextop = llvm::find_if(opWorklist, allOperandsInferred); in runOnFunction() local
67 if (nextop == opWorklist.end()) in runOnFunction()
70 Operation *op = *nextop; in runOnFunction()
/external/llvm-project/mlir/examples/toy/Ch6/mlir/
DShapeInferencePass.cpp66 auto nextop = llvm::find_if(opWorklist, allOperandsInferred); in runOnFunction() local
67 if (nextop == opWorklist.end()) in runOnFunction()
70 Operation *op = *nextop; in runOnFunction()
/external/iptables/extensions/
Dlibxt_u32.c57 switch (ct->location[i].nextop) { in u32_dump()
163 ct->location[locind].nextop = XT_U32_AND; in u32_parse()
168 ct->location[locind].nextop = XT_U32_LEFTSH; in u32_parse()
173 ct->location[locind].nextop = XT_U32_RIGHTSH; in u32_parse()
175 ct->location[locind].nextop = XT_U32_AT; in u32_parse()
/external/kernel-headers/original/uapi/linux/netfilter/
Dxt_u32.h16 __u8 nextop; member
/external/iptables/include/linux/netfilter/
Dxt_u32.h15 __u8 nextop; member
/external/python/cpython3/Python/
Dpeephole.c235 unsigned char opcode, nextop; in PyCode_Optimize() local
297 nextop = nexti < codelen ? _Py_OPCODE(codestr[nexti]) : 0; in PyCode_Optimize()
308 if (nextop != POP_JUMP_IF_FALSE || in PyCode_Optimize()
337 if (nextop != UNPACK_SEQUENCE || in PyCode_Optimize()
/external/libxkbcommon/src/xkbcomp/
Dast-build.c466 char nextop; in IncludeCreate() local
474 if (!ParseIncludeMap(&tmp, &file, &map, &nextop, &extra_data)) in IncludeCreate()
509 if (nextop == '|') in IncludeCreate()
/external/lua/src/
Dlparser.c1266 BinOpr nextop; in subexpr() local
1271 nextop = subexpr(ls, &v2, priority[op].right); in subexpr()
1273 op = nextop; in subexpr()