| /openbmc/qemu/target/tricore/ |
| H A D | tricore-opcodes.h | 27 #define MASK_BITS_SHIFT(op, start, end) (extract32(op, (start), \ argument 29 #define MASK_BITS_SHIFT_SEXT(op, start, end) (sextract32(op, (start),\ argument 34 #define MASK_OP_MAJOR(op) MASK_BITS_SHIFT(op, 0, 7) argument 37 #define MASK_OP_SB_DISP8(op) MASK_BITS_SHIFT(op, 8, 15) argument 38 #define MASK_OP_SB_DISP8_SEXT(op) MASK_BITS_SHIFT_SEXT(op, 8, 15) argument 40 #define MASK_OP_SBC_CONST4(op) MASK_BITS_SHIFT(op, 12, 15) argument 41 #define MASK_OP_SBC_CONST4_SEXT(op) MASK_BITS_SHIFT_SEXT(op, 12, 15) argument 42 #define MASK_OP_SBC_DISP4(op) MASK_BITS_SHIFT(op, 8, 11) argument 44 #define MASK_OP_SBR_S2(op) MASK_BITS_SHIFT(op, 12, 15) argument 45 #define MASK_OP_SBR_DISP4(op) MASK_BITS_SHIFT(op, 8, 11) argument [all …]
|
| /openbmc/qemu/tcg/ |
| H A D | optimize.c | 345 static TCGOp *opt_insert_after(OptContext *ctx, TCGOp *op, in opt_insert_after() argument 348 return tcg_op_insert_after(ctx->tcg, op, opc, ctx->type, narg); in opt_insert_after() 351 static TCGOp *opt_insert_before(OptContext *ctx, TCGOp *op, in opt_insert_before() argument 354 return tcg_op_insert_before(ctx->tcg, op, opc, ctx->type, narg); in opt_insert_before() 357 static bool tcg_opt_gen_mov(OptContext *ctx, TCGOp *op, TCGArg dst, TCGArg src) in tcg_opt_gen_mov() argument 366 tcg_op_remove(ctx->tcg, op); in tcg_opt_gen_mov() 388 op->opc = new_op; in tcg_opt_gen_mov() 389 op->args[0] = dst; in tcg_opt_gen_mov() 390 op->args[1] = src; in tcg_opt_gen_mov() 420 static bool tcg_opt_gen_movi(OptContext *ctx, TCGOp *op, in tcg_opt_gen_movi() argument [all …]
|
| /openbmc/qemu/disas/ |
| H A D | riscv-xthead.c | 252 rv_opcode op = rv_op_illegal; in decode_xtheadba() local 265 case 0b0000011: op = rv_op_th_addsl; break; in decode_xtheadba() 275 dec->op = op; in decode_xtheadba() 281 rv_opcode op = rv_op_illegal; in decode_xtheadbb() local 291 case 0b0001010: op = rv_op_th_srriw; break; in decode_xtheadbb() 294 op = rv_op_th_tstnbz; in decode_xtheadbb() 299 op = rv_op_th_rev; in decode_xtheadbb() 304 op = rv_op_th_ff0; in decode_xtheadbb() 309 op = rv_op_th_ff1; in decode_xtheadbb() 315 op = rv_op_th_revw; in decode_xtheadbb() [all …]
|
| H A D | riscv.c | 2544 rv_opcode op = rv_op_illegal; in decode_inst_opcode() local 2548 case 0: op = rv_op_c_addi4spn; break; in decode_inst_opcode() 2551 op = rv_op_c_lq; in decode_inst_opcode() 2553 op = rv_op_c_fld; in decode_inst_opcode() 2556 case 2: op = rv_op_c_lw; break; in decode_inst_opcode() 2559 op = rv_op_c_flw; in decode_inst_opcode() 2561 op = rv_op_c_ld; in decode_inst_opcode() 2566 case 0: op = rv_op_c_lbu; break; in decode_inst_opcode() 2569 op = rv_op_c_lhu; in decode_inst_opcode() 2571 op = rv_op_c_lh; in decode_inst_opcode() [all …]
|
| /openbmc/u-boot/drivers/spi/ |
| H A D | spi-mem.c | 37 const struct spi_mem_op *op, in spi_controller_dma_map_mem_op_data() argument 42 if (!op->data.nbytes) in spi_controller_dma_map_mem_op_data() 45 if (op->data.dir == SPI_MEM_DATA_OUT && ctlr->dma_tx) in spi_controller_dma_map_mem_op_data() 47 else if (op->data.dir == SPI_MEM_DATA_IN && ctlr->dma_rx) in spi_controller_dma_map_mem_op_data() 55 return spi_map_buf(ctlr, dmadev, sgt, op->data.buf.in, op->data.nbytes, in spi_controller_dma_map_mem_op_data() 56 op->data.dir == SPI_MEM_DATA_IN ? in spi_controller_dma_map_mem_op_data() 83 const struct spi_mem_op *op, in spi_controller_dma_unmap_mem_op_data() argument 88 if (!op->data.nbytes) in spi_controller_dma_unmap_mem_op_data() 91 if (op->data.dir == SPI_MEM_DATA_OUT && ctlr->dma_tx) in spi_controller_dma_unmap_mem_op_data() 93 else if (op->data.dir == SPI_MEM_DATA_IN && ctlr->dma_rx) in spi_controller_dma_unmap_mem_op_data() [all …]
|
| H A D | spi-mem-nodm.c | 10 const struct spi_mem_op *op) in spi_mem_exec_op() argument 21 if (op->data.nbytes) { in spi_mem_exec_op() 22 if (op->data.dir == SPI_MEM_DATA_IN) in spi_mem_exec_op() 23 rx_buf = op->data.buf.in; in spi_mem_exec_op() 25 tx_buf = op->data.buf.out; in spi_mem_exec_op() 28 op_len = sizeof(op->cmd.opcode) + op->addr.nbytes + op->dummy.nbytes; in spi_mem_exec_op() 35 op_buf[pos++] = op->cmd.opcode; in spi_mem_exec_op() 37 if (op->addr.nbytes) { in spi_mem_exec_op() 38 for (i = 0; i < op->addr.nbytes; i++) in spi_mem_exec_op() 39 op_buf[pos + i] = op->addr.val >> in spi_mem_exec_op() [all …]
|
| /openbmc/u-boot/lib/lzo/ |
| H A D | lzo1x_decompress.c | 21 #define HAVE_OP(x, op_end, op) ((size_t)(op_end - op) < (x)) argument 22 #define HAVE_LB(m_pos, out, op) (m_pos < out || m_pos >= op) argument 147 unsigned char *op = out; in lzo1x_decompress_safe() local 156 if (HAVE_OP(t, op_end, op)) in lzo1x_decompress_safe() 161 *op++ = *ip++; in lzo1x_decompress_safe() 181 if (HAVE_OP(t + 3, op_end, op)) in lzo1x_decompress_safe() 186 COPY4(op, ip); in lzo1x_decompress_safe() 187 op += 4; in lzo1x_decompress_safe() 192 COPY4(op, ip); in lzo1x_decompress_safe() 193 op += 4; in lzo1x_decompress_safe() [all …]
|
| /openbmc/openbmc-test-automation/docs/ |
| H A D | code_update.md | 29 https://openpower.xyz/job/openpower-op-build/ and run as follows: 64 https://openpower.xyz/job/openpower-op-build/ and run as follows: 86 https://openpower.xyz/job/openpower-op-build/ and run as follows: 106 -rw-r--r-- jenkins-op/jenkins-op 306804 2021-05-15 22:00 image-u-boot 107 -rw-r--r-- jenkins-op/jenkins-op 3039300 2021-05-12 03:32 image-kernel 108 -rw-r--r-- jenkins-op/jenkins-op 19861504 2021-05-15 22:00 image-rofs 109 -rw-r--r-- jenkins-op/jenkins-op 850304 2021-05-15 22:00 image-rwfs 110 -rw-r--r-- jenkins-op/jenkins-op 176 2021-05-15 22:00 MANIFEST 111 -rw-r--r-- jenkins-op/jenkins-op 272 2021-05-15 22:00 publickey 112 -rw-r--r-- jenkins-op/jenkins-op 128 2021-05-15 22:00 image-u-boot.sig [all …]
|
| /openbmc/u-boot/lib/zlib/ |
| H A D | inffast.c | 92 unsigned op; /* code bits, operation, extra bits, or */ in inflate_fast() local 138 op = (unsigned)(this.bits); in inflate_fast() 139 hold >>= op; in inflate_fast() 140 bits -= op; in inflate_fast() 141 op = (unsigned)(this.op); in inflate_fast() 142 if (op == 0) { /* literal */ in inflate_fast() 148 else if (op & 16) { /* length base */ in inflate_fast() 150 op &= 15; /* number of extra bits */ in inflate_fast() 151 if (op) { in inflate_fast() 152 if (bits < op) { in inflate_fast() [all …]
|
| /openbmc/u-boot/lib/ |
| H A D | lz4.c | 86 BYTE* op = (BYTE*) dest; in LZ4_decompress_generic() local 87 BYTE* const oend = op + outputSize; in LZ4_decompress_generic() 89 BYTE* oexit = op + targetOutputSize; in LZ4_decompress_generic() 124 …if ((safeDecode) && unlikely((size_t)(op+length)<(size_t)(op))) goto _output_error; /* overflow … in LZ4_decompress_generic() 129 cpy = op+length; in LZ4_decompress_generic() 143 memcpy(op, ip, length); in LZ4_decompress_generic() 145 op += length; in LZ4_decompress_generic() 148 LZ4_wildCopy(op, ip, cpy); in LZ4_decompress_generic() 149 ip += length; op = cpy; in LZ4_decompress_generic() 166 …if ((safeDecode) && unlikely((size_t)(op+length)<(size_t)op)) goto _output_error; /* overflow de… in LZ4_decompress_generic() [all …]
|
| /openbmc/u-boot/fs/jffs2/ |
| H A D | compr_lzo.c | 98 #define TEST_OP (op <= op_end) 103 if ((lzo_uint)(op_end - op) < (lzo_uint)(x)) goto output_overrun 153 register lzo_byte *op; in lzo1x_decompress() local 164 op = out; in lzo1x_decompress() 175 *op++ = *ip++; in lzo1x_decompress() 198 if (PTR_ALIGNED2_4 (op, ip)) in lzo1x_decompress() 200 COPY4 (op, ip); in lzo1x_decompress() 202 op += 4; in lzo1x_decompress() 210 COPY4 (op, ip); in lzo1x_decompress() 211 op += 4; in lzo1x_decompress() [all …]
|
| /openbmc/qemu/target/riscv/ |
| H A D | instmap.h | 22 #define MASK_OP_MAJOR(op) (op & 0x7F) argument 56 #define MASK_OP_ARITH(op) (MASK_OP_MAJOR(op) | (op & ((0x7 << 12) | \ argument 83 #define MASK_OP_ARITH_IMM(op) (MASK_OP_MAJOR(op) | (op & (0x7 << 12))) argument 96 #define MASK_OP_BRANCH(op) (MASK_OP_MAJOR(op) | (op & (0x7 << 12))) argument 129 #define MASK_OP_LOAD(op) (MASK_OP_MAJOR(op) | (op & (0x7 << 12))) argument 140 #define MASK_OP_STORE(op) (MASK_OP_MAJOR(op) | (op & (0x7 << 12))) argument 148 #define MASK_OP_JALR(op) (MASK_OP_MAJOR(op) | (op & (0x7 << 12))) argument 151 #define MASK_OP_ATOMIC(op) \ argument 152 (MASK_OP_MAJOR(op) | (op & ((0x7 << 12) | (0x7F << 25)))) 153 #define MASK_OP_ATOMIC_NO_AQ_RL_SZ(op) \ argument [all …]
|
| /openbmc/qemu/hw/i386/kvm/ |
| H A D | xenstore_impl.c | 263 int (*op_fn)(XsNode **n, struct walk_op *op); 293 static void fire_watches(struct walk_op *op, bool parents) in fire_watches() argument 298 if (!op->mutating || op->in_transaction) { in fire_watches() 303 l = op->watches; in fire_watches() 306 w = g_hash_table_lookup(op->s->watches, op->path); in fire_watches() 315 assert(strlen(op->path) > w->rel_prefix); in fire_watches() 316 w->cb(w->cb_opaque, op->path + w->rel_prefix, w->token); in fire_watches() 322 static int xs_node_add_content(XsNode **n, struct walk_op *op) in xs_node_add_content() argument 324 GByteArray *data = op->op_opaque; in xs_node_add_content() 326 if (op->dom_id) { in xs_node_add_content() [all …]
|
| /openbmc/qemu/tests/tcg/xtensa/ |
| H A D | fpu.h | 49 .macro test_op1_rm op, fr0, fr1, v0, r, sr 53 \op \fr1, \fr0 57 .macro test_op2_rm op, fr0, fr1, fr2, v0, v1, r, sr 62 \op \fr2, \fr0, \fr1 66 .macro test_op3_rm op, fr0, fr1, fr2, fr3, v0, v1, v2, r, sr 72 \op \fr0, \fr1, \fr2 76 .macro test_op1_ex op, fr0, fr1, v0, rm, r, sr 79 test_op1_rm \op, \fr0, \fr1, \v0, \r, \sr 82 test_op1_rm \op, \fr0, \fr1, \v0, \r, \sr 85 .macro test_op2_ex op, fr0, fr1, fr2, v0, v1, rm, r, sr [all …]
|
| H A D | test_fp1.S | 13 .macro test_ord_ex op, br, fr0, fr1, v0, v1, r, sr 18 \op \br, \fr0, \fr1 32 .macro test_ord op, br, fr0, fr1, v0, v1, r, sr 35 test_ord_ex \op, \br, \fr0, \fr1, \v0, \v1, \r, \sr 38 test_ord_ex \op, \br, \fr0, \fr1, \v0, \v1, \r, \sr 41 .macro test_ord_all op, aa, ab, ba, aPI, PIa, aN, Na, II, IN, NI, qnan_sr 42 test_ord \op b0, f0, f1, 0x3f800000, 0x3f800000, \aa, FSR__ /* ord == ord */ 43 test_ord \op b1, f2, f3, 0x3f800000, 0x3fc00000, \ab, FSR__ /* ord < ord */ 44 test_ord \op b2, f4, f5, 0x3fc00000, 0x3f800000, \ba, FSR__ /* ord > ord */ 45 test_ord \op b3, f6, f7, 0x3f800000, 0x7f800000, \aPI, FSR__ /* ord +INF */ [all …]
|
| /openbmc/qemu/tests/tcg/arm/ |
| H A D | float_madds.ref | 2 op : f32(-nan:0xffa00000) * f32(-nan:0xffc00000) + f32(-inf:0xff800000) 4 op : f32(-nan:0xffc00000) * f32(-inf:0xff800000) + f32(-nan:0xffa00000) 6 op : f32(-inf:0xff800000) * f32(-nan:0xffa00000) + f32(-nan:0xffc00000) 8 op : f32(-nan:0xffc00000) * f32(-inf:0xff800000) + f32(-0x1.fffffe00000000000000p+127:0xff7fffff) 10 op : f32(-inf:0xff800000) * f32(-0x1.fffffe00000000000000p+127:0xff7fffff) + f32(-nan:0xffc00000) 12 op : f32(-0x1.fffffe00000000000000p+127:0xff7fffff) * f32(-nan:0xffc00000) + f32(-inf:0xff800000) 14 op : f32(-inf:0xff800000) * f32(-0x1.fffffe00000000000000p+127:0xff7fffff) + f32(-0x1.1874b20000000… 16 op : f32(-0x1.fffffe00000000000000p+127:0xff7fffff) * f32(-0x1.1874b200000000000000p+103:0xf30c3a59… 18 op : f32(-0x1.1874b200000000000000p+103:0xf30c3a59) * f32(-inf:0xff800000) + f32(-0x1.fffffe0000000… 20 op : f32(-0x1.fffffe00000000000000p+127:0xff7fffff) * f32(-0x1.1874b200000000000000p+103:0xf30c3a59… [all …]
|
| /openbmc/qemu/tests/tcg/loongarch64/ |
| H A D | float_madds.ref | 2 op : f32(-nan:0xffa00000) * f32(-nan:0xffc00000) + f32(-inf:0xff800000) 4 op : f32(-nan:0xffc00000) * f32(-inf:0xff800000) + f32(-nan:0xffa00000) 6 op : f32(-inf:0xff800000) * f32(-nan:0xffa00000) + f32(-nan:0xffc00000) 8 op : f32(-nan:0xffc00000) * f32(-inf:0xff800000) + f32(-0x1.fffffe00000000000000p+127:0xff7fffff) 10 op : f32(-inf:0xff800000) * f32(-0x1.fffffe00000000000000p+127:0xff7fffff) + f32(-nan:0xffc00000) 12 op : f32(-0x1.fffffe00000000000000p+127:0xff7fffff) * f32(-nan:0xffc00000) + f32(-inf:0xff800000) 14 op : f32(-inf:0xff800000) * f32(-0x1.fffffe00000000000000p+127:0xff7fffff) + f32(-0x1.1874b20000000… 16 op : f32(-0x1.fffffe00000000000000p+127:0xff7fffff) * f32(-0x1.1874b200000000000000p+103:0xf30c3a59… 18 op : f32(-0x1.1874b200000000000000p+103:0xf30c3a59) * f32(-inf:0xff800000) + f32(-0x1.fffffe0000000… 20 op : f32(-0x1.fffffe00000000000000p+127:0xff7fffff) * f32(-0x1.1874b200000000000000p+103:0xf30c3a59… [all …]
|
| /openbmc/qemu/tests/tcg/aarch64/ |
| H A D | float_madds.ref | 2 op : f32(-nan:0xffa00000) * f32(-nan:0xffc00000) + f32(-inf:0xff800000) 4 op : f32(-nan:0xffc00000) * f32(-inf:0xff800000) + f32(-nan:0xffa00000) 6 op : f32(-inf:0xff800000) * f32(-nan:0xffa00000) + f32(-nan:0xffc00000) 8 op : f32(-nan:0xffc00000) * f32(-inf:0xff800000) + f32(-0x1.fffffe00000000000000p+127:0xff7fffff) 10 op : f32(-inf:0xff800000) * f32(-0x1.fffffe00000000000000p+127:0xff7fffff) + f32(-nan:0xffc00000) 12 op : f32(-0x1.fffffe00000000000000p+127:0xff7fffff) * f32(-nan:0xffc00000) + f32(-inf:0xff800000) 14 op : f32(-inf:0xff800000) * f32(-0x1.fffffe00000000000000p+127:0xff7fffff) + f32(-0x1.1874b20000000… 16 op : f32(-0x1.fffffe00000000000000p+127:0xff7fffff) * f32(-0x1.1874b200000000000000p+103:0xf30c3a59… 18 op : f32(-0x1.1874b200000000000000p+103:0xf30c3a59) * f32(-inf:0xff800000) + f32(-0x1.fffffe0000000… 20 op : f32(-0x1.fffffe00000000000000p+127:0xff7fffff) * f32(-0x1.1874b200000000000000p+103:0xf30c3a59… [all …]
|
| /openbmc/qemu/tests/tcg/hexagon/ |
| H A D | float_madds.ref | 2 op : f32(-nan:0xffa00000) * f32(-nan:0xffc00000) + f32(-inf:0xff800000) 4 op : f32(-nan:0xffc00000) * f32(-inf:0xff800000) + f32(-nan:0xffa00000) 6 op : f32(-inf:0xff800000) * f32(-nan:0xffa00000) + f32(-nan:0xffc00000) 8 op : f32(-nan:0xffc00000) * f32(-inf:0xff800000) + f32(-0x1.fffffe00000000000000p+127:0xff7fffff) 10 op : f32(-inf:0xff800000) * f32(-0x1.fffffe00000000000000p+127:0xff7fffff) + f32(-nan:0xffc00000) 12 op : f32(-0x1.fffffe00000000000000p+127:0xff7fffff) * f32(-nan:0xffc00000) + f32(-inf:0xff800000) 14 op : f32(-inf:0xff800000) * f32(-0x1.fffffe00000000000000p+127:0xff7fffff) + f32(-0x1.1874b20000000… 16 op : f32(-0x1.fffffe00000000000000p+127:0xff7fffff) * f32(-0x1.1874b200000000000000p+103:0xf30c3a59… 18 op : f32(-0x1.1874b200000000000000p+103:0xf30c3a59) * f32(-inf:0xff800000) + f32(-0x1.fffffe0000000… 20 op : f32(-0x1.fffffe00000000000000p+127:0xff7fffff) * f32(-0x1.1874b200000000000000p+103:0xf30c3a59… [all …]
|
| /openbmc/qemu/tests/tcg/ppc64le/ |
| H A D | float_madds.ref | 2 op : f32(-nan:0xffa00000) * f32(-nan:0xffc00000) + f32(-inf:0xff800000) 4 op : f32(-nan:0xffc00000) * f32(-inf:0xff800000) + f32(-nan:0xffa00000) 6 op : f32(-inf:0xff800000) * f32(-nan:0xffa00000) + f32(-nan:0xffc00000) 8 op : f32(-nan:0xffc00000) * f32(-inf:0xff800000) + f32(-0x1.fffffe00000000000000p+127:0xff7fffff) 10 op : f32(-inf:0xff800000) * f32(-0x1.fffffe00000000000000p+127:0xff7fffff) + f32(-nan:0xffc00000) 12 op : f32(-0x1.fffffe00000000000000p+127:0xff7fffff) * f32(-nan:0xffc00000) + f32(-inf:0xff800000) 14 op : f32(-inf:0xff800000) * f32(-0x1.fffffe00000000000000p+127:0xff7fffff) + f32(-0x1.1874b20000000… 16 op : f32(-0x1.fffffe00000000000000p+127:0xff7fffff) * f32(-0x1.1874b200000000000000p+103:0xf30c3a59… 18 op : f32(-0x1.1874b200000000000000p+103:0xf30c3a59) * f32(-inf:0xff800000) + f32(-0x1.fffffe0000000… 20 op : f32(-0x1.fffffe00000000000000p+127:0xff7fffff) * f32(-0x1.1874b200000000000000p+103:0xf30c3a59… [all …]
|
| /openbmc/qemu/target/arm/tcg/ |
| H A D | mve.decode | 41 &1op qd qm size 42 &2op qd qm qn size 44 &1imm qd imm cmode op 75 @1op .... .... .... size:2 .. .... .... .... .... &1op qd=%qd qm=%qm 76 @1op_nosz .... .... .... .... .... .... .... .... &1op qd=%qd qm=%qm size=0 77 @2op .... .... .. size:2 .... .... .... .... .... &2op qd=%qd qm=%qm qn=%qn 78 @2op_nosz .... .... .... .... .... .... .... .... &2op qd=%qd qm=%qm qn=%qn size=0 79 @2op_sz28 .... .... .... .... .... .... .... .... &2op qd=%qd qm=%qm qn=%qn \ 81 @1imm .... .... .... .... .... cmode:4 .. op:1 . .... &1imm qd=%qd imm=%imm_28_16_0 90 @2op_rev .... .... .. size:2 .... .... .... .... .... &2op qd=%qd qm=%qn qn=%qm [all …]
|
| /openbmc/qemu/block/ |
| H A D | mirror.c | 161 MirrorOp *op; in mirror_wait_on_conflicts() local 163 QTAILQ_FOREACH(op, &s->ops_in_flight, next) { in mirror_wait_on_conflicts() 164 uint64_t op_start_chunk = op->offset / s->granularity; in mirror_wait_on_conflicts() 165 uint64_t op_nb_chunks = DIV_ROUND_UP(op->offset + op->bytes, in mirror_wait_on_conflicts() 169 if (op == self) { in mirror_wait_on_conflicts() 182 if (op->waiting_for_op) { in mirror_wait_on_conflicts() 186 self->waiting_for_op = op; in mirror_wait_on_conflicts() 189 qemu_co_queue_wait(&op->waiting_requests, NULL); in mirror_wait_on_conflicts() 201 static void coroutine_fn mirror_iteration_done(MirrorOp *op, int ret) in mirror_iteration_done() argument 203 MirrorBlockJob *s = op->s; in mirror_iteration_done() [all …]
|
| /openbmc/u-boot/arch/x86/include/asm/ |
| H A D | cpu.h | 70 static inline struct cpuid_result cpuid(int op) in cpuid() argument 82 : "0" (op) in cpuid() 90 static inline struct cpuid_result cpuid_ext(int op, unsigned ecx) in cpuid_ext() argument 102 : "0" (op), "2" (ecx) in cpuid_ext() 110 static inline unsigned int cpuid_eax(unsigned int op) in cpuid_eax() argument 118 : "0" (op) in cpuid_eax() 123 static inline unsigned int cpuid_ebx(unsigned int op) in cpuid_ebx() argument 132 : "0" (op) in cpuid_ebx() 137 static inline unsigned int cpuid_ecx(unsigned int op) in cpuid_ecx() argument 145 : "0" (op) in cpuid_ecx() [all …]
|
| /openbmc/phosphor-inventory-manager/ |
| H A D | interface_ops.hpp | 50 static std::any op(sdbusplus::bus_t& bus, const char* path, in op() function 60 static std::any op(sdbusplus::bus_t& bus, const char* path, in op() function 80 static InterfaceVariantType op(const std::string /* propertyName */, in op() function 90 static InterfaceVariantType op(const std::string propertyName, in op() function 102 static void op(const Interface&, std::any&, bool) {} in op() function 108 static void op(const Interface& props, std::any& holder, bool deferSignal) in op() function 124 static void op(const std::string& path, const std::string& iface, in op() function 134 static void op(const std::string& path, const std::string& iface, in op() function 145 static void op(const std::string& path, const std::string& iface, std::any&) in op() function 154 static void op(const std::string& path, const std::string& iface, in op() function [all …]
|
| /openbmc/qemu/tests/tcg/i386/ |
| H A D | test-avx.py | 118 def match(op, pattern): argument 120 return fnmatch(op, pattern[1:]) or fnmatch(op, 'V'+pattern[1:]) 121 return fnmatch(op, pattern) 138 def __init__(self, op): argument 140 if match(op, k): 183 def ArgGenerator(arg, op): argument 201 return ArgImm8u(op); 225 def __init__(self, op, args): argument 226 self.op = op 227 if op[-2:] in ["PH", "PS", "PD", "SS", "SD"]: [all …]
|