Searched defs:new_data (Results 1 - 7 of 7) sorted by relevance
/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | linebuf.c | 79 char *new_data; local 94 new_data = realloc ( linebuf->data, ( new_len + 1 ) ); 95 if ( ! new_data ) 97 memcpy ( ( new_data + linebuf->len ), data, consume ); 98 new_data[new_len] = '\0'; 99 linebuf->data = new_data;
|
H A D | xferbuf.c | 64 void *new_data; local 71 new_data = realloc ( xferbuf->data, len ); 72 if ( ! new_data ) { 77 xferbuf->data = new_data;
|
H A D | nvo.c | 60 void *new_data; local 63 new_data = realloc ( nvo->data, len ); 64 if ( ! new_data ) { 69 nvo->data = new_data;
|
/vbox/src/libs/xpcom18a4/xpcom/typelib/xpidl/ |
H A D | xpidl_idl.c | 164 input_data *new_data; local 242 new_data = xpidl_malloc(sizeof (struct input_data)); 243 new_data->point = new_data->buf = buffer; 244 new_data->max = buffer + offset; 245 *new_data->max = '\0'; 246 new_data->filename = xpidl_strdup(filename); 248 new_data->lineno = 2; 249 new_data->next = NULL; 251 return new_data; 349 input_data *new_data; local 484 input_data *new_data = NULL; local [all...] |
/vbox/src/libs/xpcom18a4/xpcom/ds/ |
H A D | nsTimelineService.cpp | 210 TimelineThreadData *new_data = nsnull; local 214 new_data = new TimelineThreadData(); 215 if (!new_data) 219 new_data->timers = PL_NewHashTable(100, PL_HashString, PL_CompareStrings, 221 if (new_data->timers==NULL) 223 new_data->initTime = PR_Now(); 226 new_data->disabled = PR_FALSE; 227 data = new_data; 228 new_data = nsnull; 232 if (new_data) // eee [all...] |
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/ |
H A D | context.c | 537 GLuint *new_data = HeapReAlloc(GetProcessHeap(), 0, context->free_occlusion_queries, local 540 if (!new_data) 547 context->free_occlusion_queries = new_data; 609 union wined3d_gl_query_object *new_data = HeapReAlloc(GetProcessHeap(), 0, context->free_event_queries, local 612 if (!new_data) 619 context->free_event_queries = new_data;
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/ |
H A D | context.c | 546 GLuint *new_data = HeapReAlloc(GetProcessHeap(), 0, context->free_occlusion_queries, local 549 if (!new_data) 556 context->free_occlusion_queries = new_data; 614 union wined3d_gl_query_object *new_data = HeapReAlloc(GetProcessHeap(), 0, context->free_event_queries, local 617 if (!new_data) 624 context->free_event_queries = new_data;
|
Completed in 54 milliseconds