Searched refs:new_data (Results 1 - 15 of 15) sorted by relevance

/xsrc/external/mit/brotli/dist/c/enc/
H A Dringbuffer.h75 uint8_t* new_data = BROTLI_ALLOC( local in function:RingBufferInitBuffer
78 if (BROTLI_IS_OOM(m) || BROTLI_IS_NULL(new_data)) return;
80 memcpy(new_data, rb->data_,
84 rb->data_ = new_data;
/xsrc/external/mit/MesaLib.old/dist/src/compiler/
H A Dblob.c47 uint8_t *new_data; local in function:grow_to_fit
67 new_data = realloc(blob->data, to_allocate);
68 if (new_data == NULL) {
73 blob->data = new_data;
/xsrc/external/mit/MesaLib/dist/src/util/
H A Dblob.c47 uint8_t *new_data; local in function:grow_to_fit
67 new_data = realloc(blob->data, to_allocate);
68 if (new_data == NULL) {
73 blob->data = new_data;
/xsrc/external/mit/xorg-server/dist/randr/
H A Drrproviderproperty.c181 void *new_data = NULL, *old_data = NULL; local in function:RRChangeProviderProperty
197 new_data = new_value.data;
201 new_data = (void *) (((char *) new_value.data) +
206 new_data = new_value.data;
211 if (new_data)
212 memcpy((char *) new_data, (char *) value, len * size_in_bytes);
H A Drrproperty.c204 void *new_data = NULL, *old_data = NULL; local in function:RRChangeOutputProperty
218 new_data = new_value.data;
222 new_data = (void *) (((char *) new_value.data) +
227 new_data = new_value.data;
232 if (new_data)
233 memcpy((char *) new_data, (char *) value, len * size_in_bytes);
/xsrc/external/mit/xorg-server.old/dist/randr/
H A Drrproperty.c183 pointer new_data = NULL, old_data = NULL; local in function:RRChangeOutputProperty
199 new_data = new_value.data;
203 new_data = (pointer) (((char *) new_value.data) +
208 new_data = new_value.data;
213 if (new_data)
214 memcpy ((char *) new_data, (char *) value, len * size_in_bytes);
/xsrc/external/mit/xorg-server/dist/Xi/
H A Dxiproperty.c725 void *new_data = NULL, *old_data = NULL; local in function:XIChangeDeviceProperty
739 new_data = new_value.data;
743 new_data = (void *) (((char *) new_value.data) +
748 new_data = new_value.data;
753 if (new_data)
754 memcpy((char *) new_data, value, len * size_in_bytes);
/xsrc/external/mit/xorg-server.old/dist/Xi/
H A Dxiproperty.c746 pointer new_data = NULL, old_data = NULL; local in function:XIChangeDeviceProperty
762 new_data = new_value.data;
766 new_data = (pointer) (((char *) new_value.data) +
771 new_data = new_value.data;
776 if (new_data)
777 memcpy ((char *) new_data, (char *) value, len * size_in_bytes);
/xsrc/external/mit/MesaLib/dist/src/intel/tools/
H A Daubinator_error_decode.c638 uint32_t *new_data = calloc(total_size, 1); local in function:read_data_file
639 memcpy(new_data, (uint8_t *)sections[s].data + ring_head, size1);
640 memcpy((uint8_t *)new_data + size1, sections[s].data, ring_tail);
642 sections[s].data = new_data;
/xsrc/external/mit/pixman/dist/pixman/
H A Dpixman-region.c273 region_data_type_t * new_data; \
278 new_data = NULL; \
282 new_data = (region_data_type_t *) \
286 if (new_data) \
288 new_data->size = (numRects); \
289 (reg)->data = new_data; \
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/
H A Dsi_shader_tgsi_mem.c794 LLVMValueRef new_data; local in function:atomic_emit_memory
795 new_data = lp_build_emit_fetch(&ctx->bld_base,
798 new_data = ac_to_integer(&ctx->ac, new_data);
800 result = ac_build_atomic_cmp_xchg(&ctx->ac, ptr, arg, new_data,
/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui.h1213 inline void reserve(int new_capacity) { if (new_capacity <= Capacity) return; T* new_data = (T*)ImGui::MemAlloc((size_t)new_capacity * sizeof(T)); if (Data) { memcpy(new_data, Data, (size_t)Size * sizeof(T)); ImGui::MemFree(Data); } Data = new_data; Capacity = new_capacity; } local in function:ImVector::reserve
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui.h1213 inline void reserve(int new_capacity) { if (new_capacity <= Capacity) return; T* new_data = (T*)ImGui::MemAlloc((size_t)new_capacity * sizeof(T)); if (Data) { memcpy(new_data, Data, (size_t)Size * sizeof(T)); ImGui::MemFree(Data); } Data = new_data; Capacity = new_capacity; } local in function:ImVector::reserve
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dbufferobj.c611 void * new_data; local in function:buffer_data_fallback
617 new_data = _mesa_align_malloc( size, ctx->Const.MinMapBufferAlignment );
618 if (new_data) {
619 bufObj->Data = (GLubyte *) new_data;
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dbufferobj.c642 void * new_data; local in function:buffer_data_fallback
648 new_data = align_malloc( size, ctx->Const.MinMapBufferAlignment );
649 if (new_data) {
650 bufObj->Data = (GLubyte *) new_data;

Completed in 46 milliseconds