Home
last modified time | relevance | path

Searched refs:type2 (Results 1 – 5 of 5) sorted by relevance

/Zephyr-latest/lib/utils/
Djson.c497 static bool equivalent_types(enum json_tokens type1, enum json_tokens type2) in equivalent_types() argument
500 return type2 == JSON_TOK_TRUE || type2 == JSON_TOK_FALSE; in equivalent_types()
503 if (type1 == JSON_TOK_NUMBER && type2 == JSON_TOK_FLOAT) { in equivalent_types()
507 if (type1 == JSON_TOK_NUMBER && type2 == JSON_TOK_INT64) { in equivalent_types()
511 if (type1 == JSON_TOK_NUMBER && type2 == JSON_TOK_UINT64) { in equivalent_types()
515 if (type1 == JSON_TOK_STRING && type2 == JSON_TOK_OPAQUE) { in equivalent_types()
519 if (type1 == JSON_TOK_ARRAY_START && type2 == JSON_TOK_OBJ_ARRAY) { in equivalent_types()
523 return type1 == type2; in equivalent_types()
/Zephyr-latest/doc/_static/css/
Ddark.css63 --highlight-type2-color: #c6ffed;
Dlight.css61 --highlight-type2-color: #0e84b5;
Dcustom.css155 color: var(--highlight-type2-color);
429 color: var(--highlight-type2-color);
/Zephyr-latest/drivers/adc/
Dadc_esp32.c366 *sample++ = (uint16_t)(digi_data++)->type2.data; in adc_esp32_fill_seq_buffer()