Home
last modified time | relevance | path

Searched refs:selection_mask (Results 1 - 8 of 8) sorted by relevance

/third_party/node/deps/openssl/openssl/providers/implementations/encode_decode/
H A Dencode_key2blob.c55 static int key2blob_check_selection(int selection, int selection_mask) in key2blob_check_selection() argument
74 int check2 = (selection_mask & checks[i]) != 0; in key2blob_check_selection()
H A Ddecode_der2key.c61 int selection_mask; member
162 int check2 = (desc->selection_mask & checks[i]) != 0; in der2key_check_selection()
197 selection = ctx->desc->selection_mask; in der2key_decode()
198 if ((selection & ctx->desc->selection_mask) == 0) { in der2key_decode()
H A Dencode_key2any.c1013 static int key2any_check_selection(int selection, int selection_mask) in key2any_check_selection() argument
1032 int check2 = (selection_mask & checks[i]) != 0; in key2any_check_selection()
/third_party/openssl/providers/implementations/encode_decode/
H A Dencode_key2blob.c55 static int key2blob_check_selection(int selection, int selection_mask) in key2blob_check_selection() argument
74 int check2 = (selection_mask & checks[i]) != 0; in key2blob_check_selection()
H A Ddecode_der2key.c61 int selection_mask; member
162 int check2 = (desc->selection_mask & checks[i]) != 0; in der2key_check_selection()
197 selection = ctx->desc->selection_mask; in der2key_decode()
198 if ((selection & ctx->desc->selection_mask) == 0) { in der2key_decode()
H A Dencode_key2any.c1002 static int key2any_check_selection(int selection, int selection_mask) in key2any_check_selection() argument
1021 int check2 = (selection_mask & checks[i]) != 0; in key2any_check_selection()
/third_party/skia/third_party/externals/imgui/
H A Dimgui_demo.cpp780 // 'selection_mask' is dumb representation of what may be user-side selection state. in ShowDemoWindowWidgets()
784 static int selection_mask = (1 << 2); in ShowDemoWindowWidgets() local
790 const bool is_selected = (selection_mask & (1 << i)) != 0; in ShowDemoWindowWidgets()
833 selection_mask ^= (1 << node_clicked); // CTRL+click to toggle in ShowDemoWindowWidgets()
834 else //if (!(selection_mask & (1 << node_clicked))) // Depending on selection behavior you want, may want to preserve selection when clicking on item that is part of the selection in ShowDemoWindowWidgets()
835 selection_mask = (1 << node_clicked); // Click to single-select in ShowDemoWindowWidgets()
/third_party/node/deps/v8/src/execution/s390/
H A Dsimulator-s390.cc4911 uint64_t selection_mask = 0; in EVALUATE() local
4913 selection_mask = (static_cast<uint64_t>(1) << width) - 1; in EVALUATE()
4915 selection_mask = static_cast<uint64_t>(static_cast<int64_t>(-1)); in EVALUATE()
4917 selection_mask = selection_mask << (63 - end_bit); in EVALUATE()
4919 uint64_t selected_val = rotated_val & selection_mask; in EVALUATE()
4923 selected_val = (get_register(r1) & ~selection_mask) | selected_val; in EVALUATE()

Completed in 35 milliseconds