Add entry on top of the argument stack. */
| 7604 | |
| 7605 | /** Add entry on top of the argument stack. */ |
| 7606 | static int |
| 7607 | push_args(struct context *ctx, const struct arg *arg) |
| 7608 | { |
| 7609 | if (ctx->args_num == CTX_STACK_SIZE) |
| 7610 | return -1; |
| 7611 | ctx->args[ctx->args_num++] = arg; |
| 7612 | return 0; |
| 7613 | } |
| 7614 | |
| 7615 | /** Spread value into buffer according to bit-mask. */ |
| 7616 | static size_t |
no outgoing calls
no test coverage detected