Home
last modified time | relevance | path

Searched refs:qmode (Results 1 – 9 of 9) sorted by relevance

/third_party/ejdb/src/jbi/
Djbi_consumer.c85 if (aux->qmode & JQP_QRY_APPLY_DEL) { in jbi_consumer()
109 } else if (aux->qmode & JQP_QRY_APPLY_DEL) { in jbi_consumer()
117 if (!(aux->qmode & JQP_QRY_AGGREGATE)) { in jbi_consumer()
Djbi_sorter_consumer.c64 if (aux->qmode & JQP_QRY_APPLY_DEL) { in _jbi_scan_sorter_apply()
127 } else if (aux->qmode & JQP_QRY_APPLY_DEL) { in _jbi_scan_sorter_do()
131 if (!(aux->qmode & JQP_QRY_AGGREGATE)) { in _jbi_scan_sorter_do()
Djbi_selection.c431 } else if (aux->qmode & JQP_QRY_INVERSE) { in jbi_selection()
436 …if (!(aux->qmode & JQP_QRY_NOIDX) && ctx->jbc->idx) { // we have indexes associated with collection in jbi_selection()
/third_party/skia/third_party/externals/swiftshader/third_party/astc-encoder/Source/
Dastc_block_sizes2.cpp127 int qmode = (base_quant_mode - 2) + 6 * H; in decode_block_mode_2d() local
129 int weightbits = compute_ise_bitcount(weight_count, (quantization_method) qmode); in decode_block_mode_2d()
136 *quant_mode = qmode; in decode_block_mode_2d()
216 int qmode = (base_quant_mode - 2) + 6 * H; in decode_block_mode_3d() local
218 int weightbits = compute_ise_bitcount(weight_count, (quantization_method) qmode); in decode_block_mode_3d()
228 *quant_mode = qmode; in decode_block_mode_3d()
/third_party/python/PCbuild/
Drt.bat33 set qmode= variable
40 if "%1"=="-q" (set qmode=yes) & shift & goto CheckOpts variable
52 if defined qmode goto Qmode
/third_party/ejdb/src/jql/inc/
Djqpx.c827 aux->qmode |= JQP_QRY_APPLY_DEL; in _jqp_set_apply_delete()
832 aux->qmode |= JQP_QRY_APPLY_UPSERT; in _jqp_set_apply_upsert()
877 aux->qmode |= JQP_QRY_COUNT; in _jqp_set_aggregate_count()
883 aux->qmode |= JQP_QRY_NOIDX; in _jqp_set_noidx()
888 aux->qmode |= (JQP_QRY_NOIDX | JQP_QRY_INVERSE); in _jqp_set_inverse()
1109 if (q->aux->qmode & JQP_QRY_APPLY_DEL) { in _jqp_print_apply()
1112 if (q->aux->qmode & JQP_QRY_APPLY_UPSERT) { in _jqp_print_apply()
/third_party/ejdb/src/jql/
Djqp.h291 jqp_query_mode_t qmode; member
Djql.c1429 …return q->aux->apply || q->aux->apply_placeholder || (q->aux->qmode & (JQP_QRY_APPLY_DEL | JQP_QRY… in jql_has_apply()
1433 return (q->aux->qmode & JQP_QRY_APPLY_UPSERT); in jql_has_apply_upsert()
1437 return (q->aux->qmode & JQP_QRY_APPLY_DEL); in jql_has_apply_delete()
1449 return (q->aux->qmode & JQP_QRY_AGGREGATE); in jql_has_aggregate_count()
/third_party/ejdb/src/
Dejdb2.c845 if (!(q->aux->qmode & JQP_QRY_AGGREGATE)) { in _jb_exec_upsert_lw()