HomeSort by relevance Sort by last modified time
    Searched refs:new_src (Results 1 - 9 of 9) sorted by null

  /external/lz4/examples/
simple_buffer.c 68 // *new_src location of size src_size since we know that value.
69 char *new_src = malloc(src_size); local
70 if (new_src == NULL)
71 run_screaming("Failed to allocate memory for *new_src.", 1);
72 // The LZ4_decompress_safe function needs to know where the compressed data is, how many bytes long it is, where the new_src
73 // memory location is, and how large the new_src (uncompressed) output will be. Again, save the return_value.
74 return_value = LZ4_decompress_safe(compressed_data, new_src, compressed_data_size, src_size);
85 // We should be able to compare our original *src with our *new_src and be byte-for-byte identical.
86 if (memcmp(src, new_src, src_size) != 0)
87 run_screaming("Validation failed. *src and *new_src are not identical.", 1)
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_lower_phis_to_scalar.c 235 nir_phi_src *new_src = ralloc(new_phi, nir_phi_src); local
236 new_src->pred = src->pred;
237 new_src->src = nir_src_for_ssa(&mov->dest.dest.ssa);
239 exec_list_push_tail(&new_phi->srcs, &new_src->node);
nir_lower_regs_to_ssa.c 193 nir_ssa_def *new_src = &alu->dest.dest.ssa; local
197 vec->src[i].src = nir_src_for_ssa(new_src);
nir.c     [all...]
nir.h     [all...]
  /external/openssh/
sftp-client.c 1454 char *filename, *new_src, *new_dst; local
1786 char *filename, *new_src, *new_dst; local
    [all...]
  /external/mesa3d/src/compiler/spirv/
vtn_variables.c 832 struct vtn_access_chain *new_src, *new_dest; local
833 new_src = vtn_access_chain_extend(b, src, 1);
835 new_src->link[src->length].mode = vtn_access_mode_literal;
839 new_src->link[src->length].id = i;
843 _vtn_variable_copy(b, new_dest, new_src, elem_type);
    [all...]
  /system/update_engine/payload_generator/
delta_diff_utils.cc 140 bool new_src = ProcessExtentBlockRange(src_extents, &src_idx, do_remove, local
144 if (new_src) {
    [all...]
  /external/valgrind/VEX/priv/
guest_ppc_toIR.c 3279 IRTemp new_src = newTemp(Ity_I64); local
    [all...]

Completed in 720 milliseconds