Home
last modified time | relevance | path

Searched refs:nops (Results 1 – 25 of 35) sorted by relevance

12

/third_party/optimized-routines/math/test/rtest/
Dwrappers.c17 ctx->nops = ctx->nresults = 0; in wrapper_init()
32 assert(ctx->nops < 2); in wrapper_op_real()
33 ctx->mpfr_ops[ctx->nops] = r; in wrapper_op_real()
34 ctx->ieee_ops[ctx->nops] = ieee; in wrapper_op_real()
35 ctx->size_ops[ctx->nops] = size; in wrapper_op_real()
36 ctx->nops++; in wrapper_op_real()
42 assert(ctx->nops < 2); in wrapper_op_complex()
43 ctx->mpc_ops[ctx->nops] = c; in wrapper_op_complex()
44 ctx->ieee_ops[ctx->nops] = ieee; in wrapper_op_complex()
45 ctx->size_ops[ctx->nops] = size; in wrapper_op_complex()
[all …]
Dwrappers.h11 int nops; member
/third_party/grpc/test/core/tsi/alts/handshaker/
Dalts_handshaker_client_test.cc99 size_t nops, bool is_start) { in validate_op() argument
100 GPR_ASSERT(c != nullptr && op != nullptr && nops != 0); in validate_op()
140 static bool is_recv_status_op(const grpc_op* op, size_t nops) { in is_recv_status_op() argument
141 if (nops == 1 && op->op == GRPC_OP_RECV_STATUS_ON_CLIENT) { in is_recv_status_op()
166 size_t nops, in check_client_start_success() argument
169 if (is_recv_status_op(op, nops)) { in check_client_start_success()
204 GPR_ASSERT(validate_op(client, op, nops, true /* is_start */)); in check_client_start_success()
216 size_t nops, in check_server_start_success() argument
219 if (is_recv_status_op(op, nops)) { in check_server_start_success()
248 GPR_ASSERT(validate_op(client, op, nops, true /* is_start */)); in check_server_start_success()
[all …]
/third_party/grpc/include/grpcpp/impl/codegen/
Dcall_op_set.h232 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() argument
234 grpc_op* op = &ops[(*nops)++]; in AddOp()
308 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() argument
318 grpc_op* op = &ops[(*nops)++]; in AddOp()
434 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() argument
436 grpc_op* op = &ops[(*nops)++]; in AddOp()
543 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() argument
545 grpc_op* op = &ops[(*nops)++]; in AddOp()
626 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() argument
628 grpc_op* op = &ops[(*nops)++]; in AddOp()
[all …]
Dcore_codegen.h67 size_t nops, void* tag,
Dcore_codegen_interface.h108 const grpc_op* ops, size_t nops,
/third_party/grpc/src/core/lib/surface/
Dcall.h83 size_t nops,
94 const grpc_op* ops, size_t nops);
104 #define GRPC_CALL_LOG_BATCH(sev, ops, nops) \ argument
107 grpc_call_log_batch(sev, ops, nops); \
Dcall_log_batch.cc106 const grpc_op* ops, size_t nops) { in grpc_call_log_batch() argument
107 for (size_t i = 0; i < nops; i++) { in grpc_call_log_batch()
Dcall.cc1556 size_t nops, void* notify_tag, in call_start_batch() argument
1569 GRPC_CALL_LOG_BATCH(GPR_INFO, ops, nops); in call_start_batch()
1571 if (nops == 0) { in call_start_batch()
1599 for (i = 0; i < nops; i++) { in call_start_batch()
1968 size_t nops, void* tag, void* reserved) { in grpc_call_start_batch() argument
1974 5, (call, ops, (unsigned long)nops, tag, reserved)); in grpc_call_start_batch()
1981 err = call_start_batch(call, ops, nops, tag, 0); in grpc_call_start_batch()
1989 size_t nops, in grpc_call_start_batch_and_execute() argument
1991 return call_start_batch(call, ops, nops, closure, 1); in grpc_call_start_batch_and_execute()
/third_party/grpc/src/csharp/ext/
Dgrpc_csharp_ext.c567 size_t nops,
574 size_t nops, void* tag, in grpcsharp_call_start_batch_nop() argument
578 (void)nops; in grpcsharp_call_start_batch_nop()
586 size_t nops, in grpcsharp_call_start_batch_default() argument
589 return grpc_call_start_batch(call, ops, nops, tag, reserved); in grpcsharp_call_start_batch_default()
597 size_t nops, void* tag, in grpcsharp_call_start_batch() argument
599 return g_call_start_batch_func(call, ops, nops, tag, reserved); in grpcsharp_call_start_batch()
817 size_t nops = send_empty_initial_metadata ? 2 : 1; in grpcsharp_call_send_message() local
828 return grpcsharp_call_start_batch(call, ops, nops, ctx, NULL); in grpcsharp_call_send_message()
851 size_t nops = 1; in grpcsharp_call_send_status_from_server() local
[all …]
/third_party/python/Python/
Dpeephole.c234 unsigned int j, nops; in PyCode_Optimize() local
457 for (i = 0, nops = 0; i < codelen; i++) { in PyCode_Optimize()
458 size_t block = (size_t)i - nops; in PyCode_Optimize()
464 nops++; in PyCode_Optimize()
523 assert(h + (Py_ssize_t)nops == codelen); in PyCode_Optimize()
/third_party/grpc/test/core/bad_ssl/
Dbad_ssl_test.cc39 static void run_test(const char* target, size_t nops) { in run_test() argument
98 error = grpc_call_start_batch(c, ops, nops, tag(1), nullptr); in run_test()
/third_party/grpc/src/core/tsi/alts/handshaker/
Dalts_handshaker_client.h52 size_t nops, grpc_closure* tag);
/third_party/grpc/src/cpp/common/
Dcore_codegen.cc111 size_t nops, void* tag, in grpc_call_start_batch() argument
113 return ::grpc_call_start_batch(call, ops, nops, tag, reserved); in grpc_call_start_batch()
/third_party/uboot/u-boot-2020.01/include/linux/mtd/
Dspinand.h222 unsigned int nops; member
228 .nops = sizeof((struct spi_mem_op[]){ __VA_ARGS__ }) / \
/third_party/grpc/src/objective-c/GRPCClient/private/GRPCCore/
DGRPCWrappedCall.m272 size_t nops = operations.count;
273 grpc_op *ops_array = gpr_malloc(nops * sizeof(grpc_op));
279 grpc_call_start_batch(_call, ops_array, nops, (__bridge_retained void *)(^(bool success) {
/third_party/ffmpeg/tests/checkasm/
Dcheckasm.c465 uint16_t nops[10000]; in measure_nop_time() local
473 nops[i] = t; in measure_nop_time()
476 qsort(nops, 10000, sizeof(uint16_t), cmp_nop); in measure_nop_time()
478 nop_sum += nops[i]; in measure_nop_time()
/third_party/ltp/doc/
Dnommu-notes.txt153 functions specifically, make them nops/XFAIL for nommu systems.
171 option specifically, make them nops/XFAIL for nommu systems.
/third_party/grpc/include/grpc/
Dgrpc.h260 const grpc_op* ops, size_t nops,
/third_party/uboot/u-boot-2020.01/drivers/mtd/nand/spi/
Dcore.c814 unsigned int nops) in spinand_find_supported_op() argument
818 for (i = 0; i < nops; i++) { in spinand_find_supported_op()
879 for (i = 0; i < variants->nops; i++) { in spinand_select_op_variant()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceClFlags.def210 X(MaxNopsPerInstruction, int, dev_opt_flag, "max-nops-per-instruction", \
211 cl::desc("Max number of nops to insert per instruction"), cl::init(1)) \
/third_party/e2fsprogs/contrib/
Dfsstress.c250 int nops; variable
343 nops = sizeof(ops) / sizeof(ops[0]); in main()
344 ops_end = &ops[nops]; in main()
/third_party/ltp/testcases/kernel/fs/fsstress/
Dfsstress.c223 int nops; variable
316 nops = ARRAY_SIZE(ops); in main()
317 ops_end = &ops[nops]; in main()
/third_party/grpc/src/python/grpcio/grpc/_cython/_cygrpc/
Dgrpc.pxi365 grpc_call *call, const grpc_op *ops, size_t nops, void *tag,
/third_party/skia/third_party/externals/swiftshader/third_party/marl/docs/
Dscheduler.md159 - A tight loop of `nops` is used to keep the CPU busy, while periodically checking `work.num` to se…

12