Searched refs:emitted (Results 1 - 7 of 7) sorted by path

/freebsd-11-stable/contrib/libucl/tests/
H A Dtest_basic.c39 unsigned char *emitted = NULL; local
195 emitted = ucl_object_emit (obj, UCL_EMIT_JSON_COMPACT);
198 emitted = ucl_object_emit (obj, UCL_EMIT_JSON);
202 emitted = ucl_object_emit (obj, UCL_EMIT_YAML);
205 emitted = NULL;
206 func = ucl_object_emit_memory_funcs ((void **)&emitted);
215 fprintf (out, "%s\n****\n", emitted);
221 ucl_parser_add_string (parser2, (const char *)emitted, 0);
226 fprintf (out, "%s\n", emitted);
231 if (emitted !
[all...]
H A Dtest_generate.c49 unsigned char *emitted; local
267 fn = ucl_object_emit_memory_funcs (&emitted);
269 fprintf (out, "%s\n", emitted);
276 if (ucl_parser_add_chunk_full (parser, emitted, strlen (emitted),
286 ucl_parser_add_chunk_full (parser, emitted, strlen (emitted),
298 if (emitted != NULL) {
299 free (emitted);
H A Dtest_msgpack.c110 unsigned char *emitted, *emitted2; local
164 emitted = ucl_object_emit_len (obj, UCL_EMIT_MSGPACK, &elen);
166 assert (emitted != NULL);
169 fprintf (out, "%*.s\n", (int)elen, emitted);
177 if (!ucl_parser_add_chunk_full (parser, emitted, elen, 0,
191 assert (memcmp (emitted, emitted2, elen) == 0);
195 free (emitted);
H A Dtest_speed.c66 unsigned char *emitted; local
109 emitted = ucl_object_emit (obj, UCL_EMIT_CONFIG);
113 printf ("ucl: emitted config in %.4f seconds\n", seconds);
115 free (emitted);
118 emitted = ucl_object_emit (obj, UCL_EMIT_JSON);
122 printf ("ucl: emitted json in %.4f seconds\n", seconds);
124 free (emitted);
127 emitted = ucl_object_emit (obj, UCL_EMIT_JSON_COMPACT);
131 printf ("ucl: emitted compact json in %.4f seconds\n", seconds);
133 free (emitted);
[all...]
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dradeon_fence.c647 already the last emitted fence */
713 * radeon_fence_count_emitted - get the count of emitted fences
718 * Get the number of fences emitted on the requested ring (all asics).
719 * Returns the number of emitted fences on the ring. Used by the
724 uint64_t emitted; local
730 emitted = rdev->fence_drv[ring].sync_seq[ring]
733 if (emitted > 0x10000000) {
734 emitted = 0x10000000;
736 return (unsigned)emitted;
963 seq_printf(m, "Last emitted
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/profile/
H A DInstrProfData.inc291 * otherwise the record for this kind won't be emitted.
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfData.inc291 * otherwise the record for this kind won't be emitted.

Completed in 152 milliseconds