Searched refs:new_info (Results 1 - 6 of 6) sorted by relevance
/external/ltrace/ |
H A D | value.c | 488 struct arg_type_info *new_info = calloc(sizeof(*new_info), 1); local 489 if (new_info == NULL) 495 type_init_pointer(new_info, orig, own); 496 new_info->lens = orig->lens; 497 value_set_type(value, new_info, 1);
|
/external/pcre/dist/ |
H A D | pcretest.c | 2413 new_info(pcre *re, pcre_extra *study, int option, void *ptr) function 3642 if (new_info(re, NULL, PCRE_INFO_OPTIONS, &get_options) < 0) 4057 if (new_info(re, NULL, PCRE_INFO_OPTIONS, &get_options) < 0) 4072 new_info(re, NULL, PCRE_INFO_NAMECOUNT, &name_count); 4073 new_info(re, NULL, PCRE_INFO_NAMEENTRYSIZE, &name_entry_size); 4087 new_info(re, NULL, PCRE_INFO_SIZE, &size); 4126 if (new_info(re, extra, PCRE_INFO_JITSIZE, &jitsize) == 0 && 4168 if (new_info(re, NULL, PCRE_INFO_CAPTURECOUNT, &count) + 4169 new_info(re, NULL, PCRE_INFO_BACKREFMAX, &backrefmax) + 4170 new_info(r [all...] |
/external/v8/src/debug/ |
H A D | liveedit.js | 149 var new_info = 155 replaced_function_new_infos.push(new_info); 315 var new_info = old_node.corresponding_node.info; 318 %LiveEditReplaceFunctionCode(new_info.raw_array, 346 change_log.push( {function_patched: new_info.function_name} ); 348 change_log.push( {function_patched: new_info.function_name,
|
/external/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_vbuf.c | 1114 struct pipe_draw_info new_info = *info; local 1115 new_info.indexed = FALSE; 1116 new_info.index_bias = 0; 1117 new_info.min_index = 0; 1118 new_info.max_index = info->count - 1; 1119 new_info.start = 0; 1121 pipe->draw_vbo(pipe, &new_info);
|
/external/harfbuzz_ng/src/ |
H A D | hb-buffer.cc | 128 hb_glyph_info_t *new_info = NULL; local 142 new_info = (hb_glyph_info_t *) realloc (info, new_allocated * sizeof (info[0])); 145 if (unlikely (!new_pos || !new_info)) 151 if (likely (new_info)) 152 info = new_info;
|
/external/v8/src/wasm/ |
H A D | wasm-module.cc | 1024 Handle<WasmDebugInfo> new_info = WasmDebugInfo::New(handle(wasm)); 1025 wasm->SetInternalField(kWasmDebugInfo, *new_info); 1026 return *new_info;
|
Completed in 201 milliseconds