Home
last modified time | relevance | path

Searched refs:bstate (Results 1 – 12 of 12) sorted by relevance

/external/u-boot/lib/zlib/
Ddeflate.c817 block_state bstate; local
819 bstate = s->strategy == Z_HUFFMAN_ONLY ? deflate_huff(s, flush) :
823 if (bstate == finish_started || bstate == finish_done) {
826 if (bstate == need_more || bstate == finish_started) {
839 if (bstate == block_done) {
/external/python/cffi/demo/
D_curses.py694 return (mevent.id, mevent.x, mevent.y, mevent.z, mevent.bstate)
696 def ungetmouse(id, x, y, z, bstate): argument
699 mevent.id, mevent.x, mevent.y, mevent.z, mevent.bstate = (
700 id, x, y, z, bstate)
/external/v8/third_party/zlib/
Ddeflate.c1044 block_state bstate; local
1046 bstate = s->level == 0 ? deflate_stored(s, flush) :
1051 if (bstate == finish_started || bstate == finish_done) {
1054 if (bstate == need_more || bstate == finish_started) {
1067 if (bstate == block_done) {
/external/zlib/
Ddeflate.c1037 block_state bstate; local
1039 bstate = s->level == 0 ? deflate_stored(s, flush) :
1044 if (bstate == finish_started || bstate == finish_done) {
1047 if (bstate == need_more || bstate == finish_started) {
1060 if (bstate == block_done) {
/external/python/cpython2/Modules/zlib/
Ddeflate.c998 block_state bstate; local
1000 bstate = s->level == 0 ? deflate_stored(s, flush) :
1005 if (bstate == finish_started || bstate == finish_done) {
1008 if (bstate == need_more || bstate == finish_started) {
1021 if (bstate == block_done) {
/external/mesa3d/src/intel/vulkan/
DgenX_pipeline.c2019 const VkPipelineColorBlendAttachmentState *bstate = local
2022 if (bstate->blendEnable &&
2023 (is_dual_src_blend_factor(bstate->srcColorBlendFactor) ||
2024 is_dual_src_blend_factor(bstate->dstColorBlendFactor) ||
2025 is_dual_src_blend_factor(bstate->srcAlphaBlendFactor) ||
2026 is_dual_src_blend_factor(bstate->dstAlphaBlendFactor))) {
/external/python/cpython2/Modules/
D_cursesmodule.c1839 (unsigned long) event.bstate); in PyCurses_GetMouse()
1848 unsigned long bstate; in PyCurses_UngetMouse() local
1852 &id, &x, &y, &z, &bstate)) in PyCurses_UngetMouse()
1859 event.bstate = bstate; in PyCurses_UngetMouse()
/external/python/cpython3/Modules/
D_cursesmodule.c2853 (unsigned long) event.bstate); in _curses_getmouse_impl()
2873 unsigned long bstate) in _curses_ungetmouse_impl() argument
2884 event.bstate = bstate; in _curses_ungetmouse_impl()
/external/python/cpython3/Modules/clinic/
D_cursesmodule.c.h2457 unsigned long bstate);
2467 unsigned long bstate; in _curses_ungetmouse() local
2527 bstate = PyLong_AsUnsignedLongMask(args[4]); in _curses_ungetmouse()
2528 return_value = _curses_ungetmouse_impl(module, id, x, y, z, bstate); in _curses_ungetmouse()
/external/pcre/dist2/src/
Dpcre2_dfa_match.c635 int bstate = (int)(end_code - start_code + 1 + LINK_SIZE + revlen); in internal_dfa_match() local
636 ADD_NEW_DATA(-bstate, 0, (int)(gone_back - back)); in internal_dfa_match()
/external/python/cpython2/Doc/library/
Dcurses.rst210 5-tuple ``(id, x, y, z, bstate)``. *id* is an ID value used to distinguish
212 currently unused.) *bstate* is an integer value whose bits will be set to
605 .. function:: ungetmouse(id, x, y, z, bstate)
/external/python/cpython3/Doc/library/
Dcurses.rst218 5-tuple ``(id, x, y, z, bstate)``. *id* is an ID value used to distinguish
220 currently unused.) *bstate* is an integer value whose bits will be set to
634 .. function:: ungetmouse(id, x, y, z, bstate)