Searched refs:BINN_UINT64 (Results 1 – 6 of 6) sorted by relevance
/third_party/iowow/src/json/ |
D | iwbinn.h | 122 #define BINN_UINT64 0x80 // (QWORD) (unsigned integer) Is the default format for the QWORD type macro 341 return binn_value(BINN_UINT64, &value, 0, NULL); in binn_uint64() 560 #define binn_set_uint64(item, value) do { (item)->type = BINN_UINT64; (item)->vuint64 = value; \ 630 return binn_list_add(list, BINN_UINT64, &value, 0); in binn_list_add_uint64() 708 return binn_map_set(map, id, BINN_UINT64, &value, 0); in binn_map_set_uint64() 782 return binn_object_set(obj, key, BINN_UINT64, &value, 0); in binn_object_set_uint64() 862 return binn_list_get(list, pos, BINN_UINT64, pvalue, NULL); in binn_list_get_uint64() 928 return binn_map_get(map, id, BINN_UINT64, pvalue, NULL); in binn_map_get_uint64() 997 return binn_object_get(obj, key, BINN_UINT64, pvalue, NULL); in binn_object_get_uint64()
|
D | iwbinn.c | 606 case BINN_UINT64: in compress_int() 1988 case BINN_UINT64: in type_family() 2043 case BINN_UINT64: in int_type() 2102 case BINN_UINT64: in copy_int_value() 2160 case BINN_UINT64: in copy_int_value() 2500 binn_list_get(list, pos, BINN_UINT64, &value, NULL); in binn_list_uint64() 2600 binn_map_get(map, id, BINN_UINT64, &value, NULL); in binn_map_uint64() 2700 binn_object_get(obj, key, BINN_UINT64, &value, NULL); in binn_object_uint64()
|
D | iwjson.c | 507 case BINN_UINT64: in _jbl_binn_type() 768 case BINN_UINT64: // overflow? in _jbl_as_json() 895 case BINN_UINT64: in jbl_get_i64() 933 case BINN_UINT64: in jbl_get_f64() 1987 case BINN_UINT64: in _jbl_create_node()
|
/third_party/iowow/src/json/tests/ |
D | jbl_test_binn1.c | 513 CU_ASSERT(binn_list_add(list, BINN_UINT64, &vuint64, 0) == TRUE); // 9th in test1() 524 CU_ASSERT(binn_map_set(map, 99007, BINN_UINT64, &vuint64, 0) == TRUE); // 10th in test1() 535 CU_ASSERT(binn_object_set(obj, "key7", BINN_UINT64, &vuint64, 0) == TRUE); // 10th in test1() 1190 CU_ASSERT(binn_list_add(list, BINN_UINT64, &vuint64, 0) == TRUE); // 9th in test4() 1201 CU_ASSERT(binn_map_set(map, 99007, BINN_UINT64, &vuint64, 0) == TRUE); // 10th in test4() 1212 CU_ASSERT(binn_object_set(obj, "key7", BINN_UINT64, &vuint64, 0) == TRUE); // 10th in test4() 1403 CU_ASSERT(type == BINN_UINT64); in test4() 1494 CU_ASSERT(type == BINN_UINT64); in test4() 1585 CU_ASSERT(type == BINN_UINT64); in test4() 1635 CU_ASSERT(type == BINN_UINT64); in test4()
|
D | jbl_test_binn2.c | 277 CU_ASSERT(binn_object_set(obj, "uint64", BINN_UINT64, &vuint64, 0) == TRUE); in test_create_object_1() 422 CU_ASSERT(binn_object_get(objptr, "uint64", BINN_UINT64, &vuint64, NULL) == TRUE); in test_binn_read() 696 CU_ASSERT(value.type == BINN_UINT64); in test_binn_read() 850 CU_ASSERT(copy_int_value_tests(&vint8, &vuint64, BINN_INT8, BINN_UINT64) == FALSE); in test_int_conversion() 875 CU_ASSERT(copy_int_value_tests(&vint16, &vuint64, BINN_INT16, BINN_UINT64) == FALSE); in test_int_conversion() 900 CU_ASSERT(copy_int_value_tests(&vint32, &vuint64, BINN_INT32, BINN_UINT64) == FALSE); in test_int_conversion() 925 CU_ASSERT(copy_int_value_tests(&vint64, &vuint64, BINN_INT64, BINN_UINT64) == FALSE); in test_int_conversion() 1110 CU_ASSERT(copy_int_value_tests(&vint8, &vuint64, BINN_INT8, BINN_UINT64) == TRUE); in test_int_conversion() 1182 CU_ASSERT(copy_int_value_tests(&vuint8, &vuint64, BINN_UINT8, BINN_UINT64) == TRUE); in test_int_conversion() 1188 CU_ASSERT(copy_int_value_tests(&vuint8, &vuint64, BINN_UINT8, BINN_UINT64) == TRUE); in test_int_conversion()
|
/third_party/ejdb/src/jql/ |
D | jql.c | 519 case BINN_UINT64: in _jql_binn_to_jqval()
|