Searched refs:emitted (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.1-release/contrib/libucl/tests/
H A Dtest_basic.c34 unsigned char *emitted = NULL; local
107 emitted = ucl_object_emit (obj, UCL_EMIT_JSON);
110 emitted = ucl_object_emit (obj, UCL_EMIT_CONFIG);
115 ucl_parser_add_string (parser2, emitted, 0);
119 fprintf (out, "%s\n", emitted);
123 if (emitted != NULL) {
124 free (emitted);
128 emitted = ucl_object_emit (obj, UCL_EMIT_JSON);
131 emitted = ucl_object_emit (obj, UCL_EMIT_CONFIG);
134 fprintf (out, "%s\n", emitted);
[all...]
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...]
H A Dtest_generate.c35 unsigned char *emitted; local
135 emitted = ucl_object_emit (obj, UCL_EMIT_CONFIG);
137 fprintf (out, "%s\n", emitted);
140 if (emitted != NULL) {
141 free (emitted);
/freebsd-10.1-release/sys/dev/drm2/radeon/
H A Dradeon_fence.c713 * 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 0x%016llx\n",

Completed in 154 milliseconds