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

  /src/external/gpl3/gdb/dist/gdb/
cp-namespace.c 1018 int scope_length = length + cp_find_first_component (scope + length); local
1023 if (scope[scope_length] == ':')
1027 scope_length + 2);
1033 full_name = (char *) alloca (scope_length + 2 + strlen (name) + 1);
1034 strncpy (full_name, scope, scope_length);
1035 memcpy (full_name + scope_length, "::", 2);
1036 strcpy (full_name + scope_length + 2, name);
  /src/external/gpl3/gdb.old/dist/gdb/
cp-namespace.c 1059 int scope_length = length + cp_find_first_component (scope + length); local
1064 if (scope[scope_length] == ':')
1068 scope_length + 2);
1074 full_name = (char *) alloca (scope_length + 2 + strlen (name) + 1);
1075 strncpy (full_name, scope, scope_length);
1076 memcpy (full_name + scope_length, "::", 2);
1077 strcpy (full_name + scope_length + 2, name);

Completed in 351 milliseconds