Home
last modified time | relevance | path

Searched refs:gs (Results 1 – 5 of 5) sorted by relevance

/busybox-1.35.0/scripts/kconfig/
Dutil.c63 struct gstr gs; in str_new() local
64 gs.s = malloc(sizeof(char) * 64); in str_new()
65 gs.len = 16; in str_new()
66 strcpy(gs.s, "\0"); in str_new()
67 return gs; in str_new()
73 struct gstr gs; in str_assign() local
74 gs.s = strdup(s); in str_assign()
75 gs.len = strlen(s) + 1; in str_assign()
76 return gs; in str_assign()
80 void str_free(struct gstr *gs) in str_free() argument
[all …]
Dlkc.h94 void str_free(struct gstr *gs);
95 void str_append(struct gstr *gs, const char *s);
96 void str_printf(struct gstr *gs, const char *fmt, ...);
97 const char *str_get(struct gstr *gs);
Dexpr.h177 void expr_gstr_print(struct expr *e, struct gstr *gs);
Dexpr.c1096 void expr_gstr_print(struct expr *e, struct gstr *gs) in expr_gstr_print() argument
1098 expr_print(e, expr_print_gstr_helper, gs, E_NONE); in expr_gstr_print()
/busybox-1.35.0/archival/libarchive/bz/
Dcompress.c305 unsigned gs; in sendMTFValues() local
353 gs = 0; in sendMTFValues()
360 ge = gs; in sendMTFValues()
367 if (ge > gs in sendMTFValues()
376 if (v >= gs && v <= ge) in sendMTFValues()
382 gs = ge + 1; in sendMTFValues()
412 gs = 0; in sendMTFValues()
418 if (gs >= s->nMTF) in sendMTFValues()
420 ge = gs + BZ_G_SIZE - 1; in sendMTFValues()
431 if (nGroups == 6 && 50 == ge-gs+1) { in sendMTFValues()
[all …]