HomeSort by: relevance | last modified time | path
    Searched defs:ctf_string (Results 1 - 8 of 8) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
ctfc.cc 261 ctf_string_t * ctf_string = ggc_cleared_alloc<ctf_string_t> (); local
263 ctf_string->cts_str = str;
264 ctf_string->cts_next = NULL;
267 str_table->ctstab_head = ctf_string;
271 str_table->ctstab_tail->cts_next = ctf_string;
273 str_table->ctstab_tail = ctf_string;
284 char * ctf_string; local
292 ctf_string = CONST_CAST (char *, str_table->ctstab_estr);
300 ctf_string = CONST_CAST (char *, ggc_strdup (name));
302 ctfc_strtable_append_str (str_table, ctf_string);
    [all...]
ctfout.cc 626 ctf_string_t * ctf_string = ctfc->ctfc_strtable.ctstab_head; local
628 while (ctf_string)
630 dw2_asm_output_nstring (ctf_string->cts_str, -1, "ctf_string");
631 ctf_string = ctf_string->cts_next;
btfout.cc 1151 ctf_string_t * ctf_string = ctfc->ctfc_strtable.ctstab_head; local
1154 while (ctf_string)
1156 dw2_asm_output_nstring (ctf_string->cts_str, -1, "btf_string, str_pos = 0x%x", str_pos);
1157 str_pos += strlen(ctf_string->cts_str) + 1;
1158 ctf_string = ctf_string->cts_next;
1161 ctf_string = ctfc->ctfc_aux_strtable.ctstab_head;
1162 while (ctf_string)
1164 dw2_asm_output_nstring (ctf_string->cts_str, -1, "btf_aux_string, str_pos = 0x%x", str_pos);
1165 str_pos += strlen(ctf_string->cts_str) + 1
    [all...]
ctfc.h 53 typedef struct GTY ((chain_next ("%h.cts_next"))) ctf_string struct
56 struct ctf_string * cts_next; /* A list node. */
  /src/external/gpl3/gcc.old/dist/gcc/
ctfc.cc 261 ctf_string_t * ctf_string = ggc_cleared_alloc<ctf_string_t> (); local
263 ctf_string->cts_str = str;
264 ctf_string->cts_next = NULL;
267 str_table->ctstab_head = ctf_string;
271 str_table->ctstab_tail->cts_next = ctf_string;
273 str_table->ctstab_tail = ctf_string;
284 char * ctf_string; local
292 ctf_string = CONST_CAST (char *, str_table->ctstab_estr);
300 ctf_string = CONST_CAST (char *, ggc_strdup (name));
302 ctfc_strtable_append_str (str_table, ctf_string);
    [all...]
ctfout.cc 626 ctf_string_t * ctf_string = ctfc->ctfc_strtable.ctstab_head; local
628 while (ctf_string)
630 dw2_asm_output_nstring (ctf_string->cts_str, -1, "ctf_string");
631 ctf_string = ctf_string->cts_next;
btfout.cc 841 ctf_string_t * ctf_string = ctfc->ctfc_strtable.ctstab_head; local
843 while (ctf_string)
845 dw2_asm_output_nstring (ctf_string->cts_str, -1, "btf_string");
846 ctf_string = ctf_string->cts_next;
849 ctf_string = ctfc->ctfc_aux_strtable.ctstab_head;
850 while (ctf_string)
852 dw2_asm_output_nstring (ctf_string->cts_str, -1, "btf_aux_string");
853 ctf_string = ctf_string->cts_next
    [all...]
ctfc.h 53 typedef struct GTY ((chain_next ("%h.cts_next"))) ctf_string struct
56 struct ctf_string * cts_next; /* A list node. */

Completed in 22 milliseconds