Lines Matching full:d
88 LV_LOG_USER("Feature-%d: %s\t - %s", in lv_vg_lite_dump_info()
100 LV_LOG_USER("Error code: %d(%s)", (int)error, lv_vg_lite_error_string(error)); in lv_vg_lite_error_dump_info()
111 LV_LOG_ERROR("vg_lite_get_mem_size error: %d(%s)", in lv_vg_lite_error_dump_info()
124 LV_LOG_ERROR("vg_lite_dump_command_buffer error: %d(%s)", in lv_vg_lite_error_dump_info()
322 LV_LOG_USER("length: %d", (int)len); in lv_vg_lite_path_dump_info()
326 LV_LOG_USER("format: %d", (int)path->format); in lv_vg_lite_path_dump_info()
327 LV_LOG_USER("quality: %d", (int)path->quality); in lv_vg_lite_path_dump_info()
328 LV_LOG_USER("path_changed: %d", (int)path->path_changed); in lv_vg_lite_path_dump_info()
329 LV_LOG_USER("pdata_internal: %d", (int)path->pdata_internal); in lv_vg_lite_path_dump_info()
330 LV_LOG_USER("type: %d", (int)path->path_type); in lv_vg_lite_path_dump_info()
331 LV_LOG_USER("add_end: %d", (int)path->add_end); in lv_vg_lite_path_dump_info()
337 LV_LOG_USER("stroke_size: %d", (int)path->stroke_size); in lv_vg_lite_path_dump_info()
355 LV_LOG_USER("pattern_count: %d", (int)stroke->pattern_count); in lv_vg_lite_stroke_dump_info()
358 LV_LOG_USER("dash_pattern[%d]: %f", i, stroke->dash_pattern[i]); in lv_vg_lite_stroke_dump_info()
364 LV_LOG_USER("dash_index: %d", (int)stroke->dash_index); in lv_vg_lite_stroke_dump_info()
376 LV_LOG_USER("point_count: %d", (int)stroke->point_count); in lv_vg_lite_stroke_dump_info()
382 LV_LOG_USER("stroke_count: %d", (int)stroke->stroke_count); in lv_vg_lite_stroke_dump_info()
391 LV_LOG_USER("add_end: %d", (int)stroke->add_end); in lv_vg_lite_stroke_dump_info()
392 LV_LOG_USER("dash_reset: %d", (int)stroke->dash_reset); in lv_vg_lite_stroke_dump_info()
401 LV_LOG_USER("swing_handling: %d", (int)stroke->swing_handling); in lv_vg_lite_stroke_dump_info()
408 LV_LOG_USER("swing_count: %d", (int)stroke->swing_count); in lv_vg_lite_stroke_dump_info()
409 LV_LOG_USER("need_swing: %d", (int)stroke->need_swing); in lv_vg_lite_stroke_dump_info()
410 LV_LOG_USER("swing_ccw: %d", (int)stroke->swing_ccw); in lv_vg_lite_stroke_dump_info()
413 LV_LOG_USER("stroke_size: %d", (int)stroke->stroke_size); in lv_vg_lite_stroke_dump_info()
415 LV_LOG_USER("fattened: %d", (int)stroke->fattened); in lv_vg_lite_stroke_dump_info()
416 LV_LOG_USER("closed: %d", (int)stroke->closed); in lv_vg_lite_stroke_dump_info()
423 LV_LOG_USER("size: W%d x H%d", (int)((buffer)->width), (int)((buffer)->height)); in lv_vg_lite_buffer_dump_info()
424 LV_LOG_USER("stride: %d", (int)((buffer)->stride)); in lv_vg_lite_buffer_dump_info()
425 LV_LOG_USER("format: %d (%s)", in lv_vg_lite_buffer_dump_info()
428 LV_LOG_USER("tiled: %d", (int)((buffer)->tiled)); in lv_vg_lite_buffer_dump_info()
557 LV_LOG_ERROR("unsupported color format: %d", cf); in lv_vg_lite_vg_fmt()
834 LV_LOG_ERROR("unsupported color format: %d", decoded->header.cf); in lv_vg_lite_buffer_open_image()
957 LV_LOG_ERROR("buffer width(%d) < 1", (int)buffer->width); in lv_vg_lite_buffer_check()
962 LV_LOG_ERROR("buffer height(%d) < 1", (int)buffer->height); in lv_vg_lite_buffer_check()
967 LV_LOG_ERROR("buffer tiled(%d) is invalid", (int)buffer->tiled); in lv_vg_lite_buffer_check()
977 LV_LOG_ERROR("buffer width(%d) is not aligned", (int)buffer->width); in lv_vg_lite_buffer_check()
982 LV_LOG_ERROR("buffer address(%p) is not aligned to %d", buffer->memory, LV_DRAW_BUF_ALIGN); in lv_vg_lite_buffer_check()
990 LV_LOG_ERROR("buffer stride(%d) != %d", (int)buffer->stride, (int)stride); in lv_vg_lite_buffer_check()
1003 LV_LOG_ERROR("buffer image_mode(%d) is invalid", (int)buffer->image_mode); in lv_vg_lite_buffer_check()
1012 LV_LOG_ERROR("buffer transparency_mode(%d) is invalid", in lv_vg_lite_buffer_check()
1034 LV_LOG_ERROR("path format(%d) is invalid", (int)path->format); in lv_vg_lite_path_check()
1041 LV_LOG_ERROR("path length(%d) error", (int)path->path_length); in lv_vg_lite_path_check()
1065 LV_LOG_ERROR("path length(%d) error", (int)path->path_length); in lv_vg_lite_path_check()
1076 … LV_LOG_ERROR("%d (%s) -> is NOT VLC_OP_END", end_op_code, lv_vg_lite_vlc_op_string(end_op_code)); in lv_vg_lite_path_check()
1087 LV_LOG_ERROR("path type(%d) is invalid", (int)path->path_type); in lv_vg_lite_path_check()
1153 vg_lite_float_t d; in lv_vg_lite_matrix_inverse() local
1179 d = m[0][0] * det00 + m[0][1] * det01 + m[0][2] * det02; in lv_vg_lite_matrix_inverse()
1182 if(d == 0.0f) in lv_vg_lite_matrix_inverse()
1186 d = 1.0f / d; in lv_vg_lite_matrix_inverse()
1191 result->m[0][0] = d * det00; in lv_vg_lite_matrix_inverse()
1192 result->m[0][1] = d * ((m[2][1] * m[0][2]) - (m[0][1] * m[2][2])); in lv_vg_lite_matrix_inverse()
1193 result->m[0][2] = d * ((m[0][1] * m[1][2]) - (m[1][1] * m[0][2])); in lv_vg_lite_matrix_inverse()
1194 result->m[1][0] = d * det01; in lv_vg_lite_matrix_inverse()
1195 result->m[1][1] = d * ((m[0][0] * m[2][2]) - (m[2][0] * m[0][2])); in lv_vg_lite_matrix_inverse()
1196 result->m[1][2] = d * ((m[1][0] * m[0][2]) - (m[0][0] * m[1][2])); in lv_vg_lite_matrix_inverse()
1197 result->m[2][0] = is_affine ? 0.0f : d * det02; in lv_vg_lite_matrix_inverse()
1198 result->m[2][1] = is_affine ? 0.0f : d * ((m[2][0] * m[0][1]) - (m[0][0] * m[2][1])); in lv_vg_lite_matrix_inverse()
1199 result->m[2][2] = is_affine ? 1.0f : d * ((m[0][0] * m[1][1]) - (m[1][0] * m[0][1])); in lv_vg_lite_matrix_inverse()