Lines Matching refs:binary
354 struct ac_shader_binary *binary,
357 variant->code_size = binary->code_size;
393 variant->bo = device->ws->buffer_create(device->ws, binary->code_size, 256,
397 memcpy(ptr, binary->code, binary->code_size);
422 struct ac_shader_binary binary;
428 ac_compile_nir_shader(tm, &binary, &variant->config,
432 radv_fill_shader_variant(device, variant, &binary, shader->stage);
435 *code_out = binary.code;
436 *code_size_out = binary.code_size;
438 free(binary.code);
439 free(binary.config);
440 free(binary.rodata);
441 free(binary.global_symbol_offsets);
442 free(binary.relocs);
443 free(binary.disasm_string);