Lines Matching defs:out
29 char *str, *out;
37 out = str;
41 out[0] = hex_char[(byte >> 4) & 0xF];
42 out[1] = hex_char[byte & 0xF];
44 out += 2;
46 *out = '\0';
91 decode_hex_string_be(const char *str, uint8_t *out, size_t size)
104 out[i] = (uint8_t)num;
117 decode_ns_nguid(const struct spdk_json_val *val, void *out)
125 rc = decode_hex_string_be(str, out, 16);
133 decode_ns_eui64(const struct spdk_json_val *val, void *out)
141 rc = decode_hex_string_be(str, out, 8);
598 decode_rpc_listen_address(const struct spdk_json_val *val, void *out)
600 struct rpc_listen_address *req = (struct rpc_listen_address *)out;
1396 decode_rpc_ns_params(const struct spdk_json_val *val, void *out)
1398 struct nvmf_rpc_ns_params *ns_params = out;
1998 goto out;
2006 goto out;
2013 goto out;
2022 goto out;
2033 goto out;
2044 goto out;
2048 out:
2148 goto out;
2155 goto out;
2161 goto out;
2170 goto out;
2180 goto out;
2190 goto out;
2194 out:
2262 decode_discovery_filter(const struct spdk_json_val *val, void *out)
2264 uint32_t *_filter = out;
2280 goto out;
2286 goto out;
2296 goto out;
2306 out:
2333 goto out;
2343 goto out;
2351 goto out;
2357 out:
2454 nvmf_rpc_decode_max_io_qpairs(const struct spdk_json_val *val, void *out)
2456 uint16_t *i = out;