• Home
  • Raw
  • Download

Lines Matching refs:cr

274 static __maybe_unused void cr_dump(CharRange *cr)  in cr_dump()  argument
277 for(i = 0; i < cr->len; i++) in cr_dump()
278 printf("%d: 0x%04x\n", i, cr->points[i]); in cr_dump()
286 void cr_init(CharRange *cr, void *mem_opaque, DynBufReallocFunc *realloc_func) in cr_init() argument
288 cr->len = cr->size = 0; in cr_init()
289 cr->points = NULL; in cr_init()
290 cr->mem_opaque = mem_opaque; in cr_init()
291 cr->realloc_func = realloc_func ? realloc_func : cr_default_realloc; in cr_init()
294 void cr_free(CharRange *cr) in cr_free() argument
296 cr->realloc_func(cr->mem_opaque, cr->points, 0); in cr_free()
299 int cr_realloc(CharRange *cr, int size) in cr_realloc() argument
304 if (size > cr->size) { in cr_realloc()
305 new_size = max_int(size, cr->size * 3 / 2); in cr_realloc()
306 new_buf = cr->realloc_func(cr->mem_opaque, cr->points, in cr_realloc()
307 new_size * sizeof(cr->points[0])); in cr_realloc()
310 cr->points = new_buf; in cr_realloc()
311 cr->size = new_size; in cr_realloc()
316 int cr_copy(CharRange *cr, const CharRange *cr1) in cr_copy() argument
318 if (cr_realloc(cr, cr1->len)) in cr_copy()
320 memcpy(cr->points, cr1->points, sizeof(cr->points[0]) * cr1->len); in cr_copy()
321 cr->len = cr1->len; in cr_copy()
326 static void cr_compress(CharRange *cr) in cr_compress() argument
331 pt = cr->points; in cr_compress()
332 len = cr->len; in cr_compress()
351 cr->len = k; in cr_compress()
355 int cr_op(CharRange *cr, const uint32_t *a_pt, int a_len, in cr_op() argument
398 if (is_in != (cr->len & 1)) { in cr_op()
399 if (cr_add_point(cr, v)) in cr_op()
403 cr_compress(cr); in cr_op()
407 int cr_union1(CharRange *cr, const uint32_t *b_pt, int b_len) in cr_union1() argument
409 CharRange a = *cr; in cr_union1()
411 cr->len = 0; in cr_union1()
412 cr->size = 0; in cr_union1()
413 cr->points = NULL; in cr_union1()
414 ret = cr_op(cr, a.points, a.len, b_pt, b_len, CR_OP_UNION); in cr_union1()
419 int cr_invert(CharRange *cr) in cr_invert() argument
422 len = cr->len; in cr_invert()
423 if (cr_realloc(cr, len + 2)) in cr_invert()
425 memmove(cr->points + 1, cr->points, len * sizeof(cr->points[0])); in cr_invert()
426 cr->points[0] = 0; in cr_invert()
427 cr->points[len + 1] = UINT32_MAX; in cr_invert()
428 cr->len = len + 2; in cr_invert()
429 cr_compress(cr); in cr_invert()
957 int unicode_script(CharRange *cr, in unicode_script() argument
977 cr_init(cr1, cr->mem_opaque, cr->realloc_func); in unicode_script()
978 cr_init(cr2, cr->mem_opaque, cr->realloc_func); in unicode_script()
980 cr1 = cr; in unicode_script()
1055 if (cr_op(cr, cr1->points, cr1->len, cr2->points, cr2->len, in unicode_script()
1059 if (cr_op(cr, cr1->points, cr1->len, cr2->points, cr2->len, in unicode_script()
1077 static int unicode_general_category1(CharRange *cr, uint32_t gc_mask) in unicode_general_category1() argument
1115 if (cr_add_interval(cr, c0, c0 + 1)) in unicode_general_category1()
1122 if (cr_add_interval(cr, c0, c)) in unicode_general_category1()
1129 static int unicode_prop1(CharRange *cr, int prop_idx) in unicode_prop1() argument
1144 if (cr_add_interval(cr, c0, c)) in unicode_prop1()
1160 if (cr_add_interval(cr, c0, c)) in unicode_prop1()
1177 static int unicode_case1(CharRange *cr, int case_mask) in unicode_case1() argument
1211 if (cr_add_interval(cr, code + i, code + i + 1)) in unicode_case1()
1219 if (cr_add_interval(cr, code, code + 1)) in unicode_case1()
1222 if (cr_add_interval(cr, code + 1, code + 2)) in unicode_case1()
1225 if (cr_add_interval(cr, code + 2, code + 3)) in unicode_case1()
1231 if (cr_add_interval(cr, code, code + len)) in unicode_case1()
1253 static int unicode_prop_ops(CharRange *cr, ...) in unicode_prop_ops() argument
1260 va_start(ap, cr); in unicode_prop_ops()
1268 cr_init(&stack[stack_len++], cr->mem_opaque, cr->realloc_func); in unicode_prop_ops()
1275 cr_init(&stack[stack_len++], cr->mem_opaque, cr->realloc_func); in unicode_prop_ops()
1282 cr_init(&stack[stack_len++], cr->mem_opaque, cr->realloc_func); in unicode_prop_ops()
1296 cr_init(cr3, cr->mem_opaque, cr->realloc_func); in unicode_prop_ops()
1319 ret = cr_copy(cr, &stack[0]); in unicode_prop_ops()
1341 int unicode_general_category(CharRange *cr, const char *gc_name) in unicode_general_category() argument
1354 return unicode_general_category1(cr, gc_mask); in unicode_general_category()
1360 int unicode_prop(CharRange *cr, const char *prop_name) in unicode_prop() argument
1372 if (cr_add_interval(cr, 0x00, 0x7f + 1)) in unicode_prop()
1376 if (cr_add_interval(cr, 0x00000, 0x10ffff + 1)) in unicode_prop()
1380 ret = unicode_prop_ops(cr, in unicode_prop()
1386 ret = unicode_prop_ops(cr, in unicode_prop()
1393 ret = unicode_prop_ops(cr, in unicode_prop()
1400 ret = unicode_prop_ops(cr, in unicode_prop()
1407 ret = unicode_prop_ops(cr, in unicode_prop()
1416 ret = unicode_prop_ops(cr, in unicode_prop()
1427 ret = unicode_prop_ops(cr, in unicode_prop()
1435 ret = unicode_prop_ops(cr, in unicode_prop()
1442 ret = unicode_prop_ops(cr, in unicode_prop()
1456 ret = unicode_prop_ops(cr, in unicode_prop()
1473 ret = unicode_case1(cr, CASE_U); in unicode_prop()
1476 ret = unicode_case1(cr, CASE_L); in unicode_prop()
1479 ret = unicode_case1(cr, CASE_U | CASE_L | CASE_F); in unicode_prop()
1482 ret = unicode_prop_ops(cr, in unicode_prop()
1489 ret = unicode_prop_ops(cr, in unicode_prop()
1496 ret = unicode_prop_ops(cr, in unicode_prop()
1504 ret = unicode_prop_ops(cr, in unicode_prop()
1516 ret = unicode_prop_ops(cr, in unicode_prop()
1531 ret = unicode_prop_ops(cr, in unicode_prop()
1540 ret = unicode_prop_ops(cr, in unicode_prop()
1550 ret = unicode_prop1(cr, prop_idx); in unicode_prop()