Home
last modified time | relevance | path

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

/external/rust/crates/libz-sys/src/zlib-ng/
Ddeflate.c93 # define DEFLATE_HOOK(strm, flush, bstate) 0 argument
987 block_state bstate; in PREFIX() local
989 bstate = DEFLATE_HOOK(strm, flush, &bstate) ? bstate : /* hook for IBM Z DFLTCC */ in PREFIX()
995 if (bstate == finish_started || bstate == finish_done) { in PREFIX()
998 if (bstate == need_more || bstate == finish_started) { in PREFIX()
1011 if (bstate == block_done) { in PREFIX()
/external/libwebsockets/win32port/zlib/
Ddeflate.c830 block_state bstate; local
832 bstate = s->strategy == Z_HUFFMAN_ONLY ? deflate_huff(s, flush) :
836 if (bstate == finish_started || bstate == finish_done) {
839 if (bstate == need_more || bstate == finish_started) {
852 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/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/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/rust/crates/libz-sys/src/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/angle/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/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/rust/crates/regex-automata/src/nfa/
Dcompiler.rs326 for (id, bstate) in bstates.iter_mut().enumerate() { in finish()
327 match *bstate { in finish()
/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.c640 int bstate = (int)(end_code - start_code + 1 + LINK_SIZE + revlen); in internal_dfa_match() local
641 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
660 .. function:: ungetmouse(id, x, y, z, bstate)