Home
last modified time | relevance | path

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

/third_party/ejdb/src/jbi/
Djbi_consumer.c84 if (aux->qmode & JQP_QRY_APPLY_DEL) { in jbi_consumer()
105 } else if (aux->qmode & JQP_QRY_APPLY_DEL) { in jbi_consumer()
113 if (!(aux->qmode & JQP_QRY_AGGREGATE)) { in jbi_consumer()
Djbi_sorter_consumer.c63 if (aux->qmode & JQP_QRY_APPLY_DEL) { in _jbi_scan_sorter_apply()
125 } else if (aux->qmode & JQP_QRY_APPLY_DEL) { in _jbi_scan_sorter_do()
129 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.c830 aux->qmode |= JQP_QRY_APPLY_DEL; in _jqp_set_apply_delete()
835 aux->qmode |= JQP_QRY_APPLY_UPSERT; in _jqp_set_apply_upsert()
880 aux->qmode |= JQP_QRY_COUNT; in _jqp_set_aggregate_count()
886 aux->qmode |= JQP_QRY_NOIDX; in _jqp_set_noidx()
891 aux->qmode |= (JQP_QRY_NOIDX | JQP_QRY_INVERSE); in _jqp_set_inverse()
1122 if (q->aux->qmode & JQP_QRY_APPLY_DEL) { in _jqp_print_apply()
1125 if (q->aux->qmode & JQP_QRY_APPLY_UPSERT) { in _jqp_print_apply()
/third_party/ejdb/src/jql/
Djqp.h294 jqp_query_mode_t qmode; member
Djql.c1475 …return q->aux->apply || q->aux->apply_placeholder || (q->aux->qmode & (JQP_QRY_APPLY_DEL | JQP_QRY… in jql_has_apply()
1479 return (q->aux->qmode & JQP_QRY_APPLY_UPSERT); in jql_has_apply_upsert()
1483 return (q->aux->qmode & JQP_QRY_APPLY_DEL); in jql_has_apply_delete()
1495 return (q->aux->qmode & JQP_QRY_AGGREGATE); in jql_has_aggregate_count()
/third_party/ejdb/src/
Dejdb2.c797 if (!(q->aux->qmode & JQP_QRY_AGGREGATE)) { in _jb_exec_upsert_lw()