Home
last modified time | relevance | path

Searched refs:total_chars (Results 1 – 25 of 144) sorted by relevance

123456

/dports/devel/py-opencensus/opencensus-0.7.13/opencensus/tags/propagation/
H A Dbinary_serializer.py50 total_chars = 0
53 total_chars += len(tag_key)
54 total_chars += len(tag_value)
57 if total_chars <= TAG_MAP_SERIALIZED_SIZE_LIMIT:
65 total_chars = 0
73 total_chars += len(key)
77 total_chars += len(val)
79 if total_chars > \
/dports/math/fricas/fricas-1.3.7/src/lib/
H A DXShade.c83 int total_chars; in char_bitmap() local
85 for (bits_line = 8, total_chars = 1; bits_line < XShadeWidth; total_chars++) in char_bitmap()
88 total_chars = total_chars * XShadeWidth; in char_bitmap()
90 return total_chars; in char_bitmap()
H A DXDither.c77 int total_chars; in dither_char_bitmap() local
79 for (bits_line = 8, total_chars = 1; bits_line < XDitherWidth; total_chars++) in dither_char_bitmap()
82 total_chars = total_chars * XDitherWidth; in dither_char_bitmap()
84 return total_chars; in dither_char_bitmap()
/dports/games/julius/julius-1.7.0/src/core/
H A Dstring.c89 int total_chars = 0; in string_from_int() local
94 total_chars = 1; in string_from_int()
100 total_chars = 1; in string_from_int()
125 total_chars += num_digits; in string_from_int()
133 return total_chars; in string_from_int()
/dports/games/augustus/augustus-3.1.0/src/core/
H A Dstring.c90 int total_chars = 0; in string_from_int() local
95 total_chars = 1; in string_from_int()
101 total_chars = 1; in string_from_int()
126 total_chars += num_digits; in string_from_int()
136 return total_chars; in string_from_int()
/dports/devel/ncurses/ncurses-6.3/test/
H A Dechochar.c41 static long total_chars = 0; variable
50 total_chars, in cleanup()
51 ((double) (total_chars) / (double) (time((time_t *) 0) - started))); in cleanup()
155 ++total_chars; in main()
H A Ddots_curses.c46 static long total_chars = 0; variable
56 total_chars, in cleanup()
57 ((double) (total_chars) / (double) (time((time_t *) 0) - started))); in cleanup()
225 ++total_chars; in main()
H A Ddots_xcurses.c56 static long total_chars = 0; variable
70 total_chars, in cleanup()
71 ((double) (total_chars) / (double) (time((time_t *) 0) - started))); in cleanup()
264 ++total_chars; in main()
H A Ddots.c45 static long total_chars = 0; variable
84 total_chars, in cleanup()
85 ((double) (total_chars) / (double) (time((time_t *) 0) - started))); in cleanup()
232 ++total_chars; in main()
H A Ddots_mvcur.c45 static long total_chars = 0; variable
85 total_chars, in cleanup()
86 ((double) (total_chars) / (double) (time((time_t *) 0) - started))); in cleanup()
247 ++total_chars; in main()
H A Ddots_termcap.c49 static long total_chars = 0; variable
136 total_chars, in cleanup()
137 ((double) (total_chars) / (double) (time((time_t *) 0) - started))); in cleanup()
315 ++total_chars; in main()
/dports/games/tads/tads-3.0.8/tads3/
H A Dvmstrcmp.cpp337 size_t total_chars; in create_from_stack() local
368 total_chars = 0; in create_from_stack()
383 for (i = 1, total_chars = 0 ; i <= equiv_cnt ; ++i) in create_from_stack()
407 total_chars += ustrp.len(vmb_get_len(strp)); in create_from_stack()
419 obj->alloc_ext(vmg_ trunc_len, case_sensitive, equiv_cnt, total_chars, in create_from_stack()
449 unsigned int total_chars; in load_from_stream() local
455 total_chars = str->read_uint2(); in load_from_stream()
461 alloc_ext(vmg_ trunc_len, (flags & 0x0001) != 0, equiv_cnt, total_chars, in load_from_stream()
469 size_t equiv_cnt, size_t total_chars, in alloc_ext() argument
490 + (total_chars * sizeof(wchar_t)); in alloc_ext()
[all …]
/dports/www/mitmproxy/mitmproxy-7.0.4/mitmproxy/tools/console/
H A Dflowview.py265 total_chars = 0
270 if total_chars + len(text) > max_chars:
271 text = text[:max_chars - total_chars]
273 total_chars += len(text)
274 if total_chars == max_chars:
278 total_chars = int(math.ceil(total_chars / chars_per_line) * chars_per_line)
281 if total_chars == max_chars:
/dports/editors/encryptpad/EncryptPad-0.5.0.1/src/back_end_src/
H A Dpassphrase_generator.cpp95 unsigned total_chars = org_total_chars; in GeneratePassphrases() local
121 total_chars -= set_it->chars.size(); in GeneratePassphrases()
129 assert(total_chars >= 1); in GeneratePassphrases()
130 unsigned char_index = GetRandomNumber(rng, 0, total_chars - 1); in GeneratePassphrases()
145 total_chars -= set_it->chars.size(); in GeneratePassphrases()
/dports/deskutils/gnome-font-viewer/gnome-font-viewer-41.0/src/
H A Dfont-thumbnailer.c131 gint idx, total_chars; in build_fallback_thumbstr() local
141 total_chars = g_utf8_strlen (chars, -1); in build_fallback_thumbstr()
144 total_chars = (gint) floor (total_chars / 2.0); in build_fallback_thumbstr()
145 ptr = g_utf8_offset_to_pointer (chars, total_chars); in build_fallback_thumbstr()
H A Dsushi-font-widget.c258 gint total_chars = 0; in build_charlist_for_face() local
267 total_chars++; in build_charlist_for_face()
271 *length = total_chars; in build_charlist_for_face()
282 gint idx, rand, total_chars; in random_string_from_available_chars() local
286 chars = build_charlist_for_face (face, &total_chars); in random_string_from_available_chars()
288 if (total_chars == 0) in random_string_from_available_chars()
291 if (total_chars <= n_chars) in random_string_from_available_chars()
297 rand = g_random_int_range (0, total_chars); in random_string_from_available_chars()
/dports/sysutils/mate-control-center/mate-control-center-1.26.0/font-viewer/
H A Dfont-thumbnailer.c140 gint idx, total_chars; in build_fallback_thumbstr() local
152 total_chars = g_utf8_strlen (chars, -1); in build_fallback_thumbstr()
155 total_chars = (gint) floor (total_chars / 2.0); in build_fallback_thumbstr()
156 ptr = g_utf8_offset_to_pointer (chars, total_chars); in build_fallback_thumbstr()
H A Dsushi-font-widget.c157 gint total_chars = 0; in build_charlist_for_face() local
166 total_chars++; in build_charlist_for_face()
170 *length = total_chars; in build_charlist_for_face()
180 gint idx, rand, total_chars; in random_string_from_available_chars() local
185 chars = build_charlist_for_face (face, &total_chars); in random_string_from_available_chars()
187 if (total_chars == 0) in random_string_from_available_chars()
193 rand = g_random_int_range (0, total_chars); in random_string_from_available_chars()
/dports/www/trafficserver/trafficserver-9.1.1/src/tscore/
H A Dink_hrtime.cc46 int64_to_str(char *buf, unsigned int buf_size, int64_t val, unsigned int *total_chars, unsigned int… in int64_to_str() argument
144 if (total_chars) { in int64_to_str()
145 *total_chars = num_chars; in int64_to_str()
/dports/mail/elm/elm2.5.8/src/
H A Dsndpart_lib.c139 part->total_chars = 0L;
256 p = (float)((part->binlo_chars+part->binhi_chars)/part->total_chars);
257 if (part->ascii_chars == part->total_chars) {
278 + (part->total_chars-part->ascii_chars) * (sizeof("=00")-1);
279 long b64_size = (part->total_chars * 4) / 3;
283 if (part->ascii_chars == part->total_chars)
/dports/editors/teco/tecoc0398/src/
H A Dgenclp.c165 int total_chars = 0; local
193 total_chars += 1;
213 sprintf(oline, "#define CLPARS_LEN %d\n", total_chars);
/dports/devel/hyperscan/hyperscan-5.4.0/src/hwlm/
H A Dhwlm_build.cpp176 u64a total_chars = 0; in hwlmBuildProto() local
183 total_chars += lit.s.length(); in hwlmBuildProto()
184 if (total_chars > cc.grey.limitLiteralMatcherChars) { in hwlmBuildProto()
/dports/editors/mined/mined-2015.25/src/
H A Dtextbuf.c582 total_chars = 0L; in recount_chars()
584 total_chars += char_count (line->text); in recount_chars()
586 total_chars --; in recount_chars()
676 if (total_chars < 0) {
683 total_lines, total_chars,
/dports/games/gtypist/gtypist-2.9.5/src/
H A Dscript.c246 int total_chars = 0; /* character counter */ in buffer_command() local
259 if ( total_chars == 0 ) in buffer_command()
263 total_chars = strlen( data ); in buffer_command()
/dports/x11-fm/sushi/sushi-41.0/src/libsushi/
H A Dsushi-font-widget.c258 gint total_chars = 0; in build_charlist_for_face() local
267 total_chars++; in build_charlist_for_face()
271 *length = total_chars; in build_charlist_for_face()
282 gint idx, rand, total_chars; in random_string_from_available_chars() local
286 chars = build_charlist_for_face (face, &total_chars); in random_string_from_available_chars()
288 if (total_chars == 0) in random_string_from_available_chars()
291 if (total_chars <= n_chars) in random_string_from_available_chars()
297 rand = g_random_int_range (0, total_chars); in random_string_from_available_chars()

123456