| /netbsd-src/external/bsd/kyua-cli/dist/engine/ |
| H A D | kyuafile.cpp | 104 lutok::state _state; member in __anona28290d30111::parser 144 lutok::stack_cleaner cleaner(_state); in parser() 146 _state.push_cxx_function(lua_syntax); in parser() 147 _state.set_global("syntax"); in parser() 148 *_state.new_userdata< parser* >() = this; in parser() 149 _state.set_global("_parser"); in parser() 151 _state.push_cxx_function(lua_atf_test_program); in parser() 152 _state.set_global("atf_test_program"); in parser() 153 _state.push_cxx_function(lua_current_kyuafile); in parser() 154 _state.set_global("current_kyuafile"); in parser() [all …]
|
| /netbsd-src/external/bsd/lutok/dist/ |
| H A D | test_utils.hpp | 94 lutok::state& _state; member in __anon387296b90111::stack_balance_checker 112 _state(state_), in stack_balance_checker() 114 _old_count(_state.get_top()) in stack_balance_checker() 117 _state.push_integer(987654321); in stack_balance_checker() 127 if (!_state.is_number() || _state.to_integer() != 987654321) in ~stack_balance_checker() 129 _state.pop(1); in ~stack_balance_checker() 132 unsigned int new_count = _state.get_top(); in ~stack_balance_checker()
|
| H A D | c_gate.cpp | 38 _state(state_) in state_c_gate() 75 return static_cast< lua_State* >(_state.raw_state()); in c_state()
|
| H A D | c_gate.hpp | 57 state& _state; member in lutok::state_c_gate
|
| /netbsd-src/external/bsd/kyua-cli/dist/utils/config/ |
| H A D | parser.cpp | 60 lutok::state _state; member 97 config::redirect(_state, _tree); in syntax_callback() 157 lutok::stack_cleaner cleaner(_pimpl->_state); in parser() 159 _pimpl->_state.push_cxx_function(lua_syntax); in parser() 160 _pimpl->_state.set_global("syntax"); in parser() 161 *_pimpl->_state.new_userdata< config::parser::impl* >() = _pimpl.get(); in parser() 162 _pimpl->_state.set_global("_config_parser"); in parser() 185 lutok::do_file(_pimpl->_state, file.str()); in parse()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/digest/ |
| H A D | ripemd.d | 97 uint[5] _state = [0x67452301,0xefcdab89,0x98badcfe,0x10325476,0xc3d2e1f0]; // state (ABCDE) 216 uint aa = _state[0], in transform() 217 bb = _state[1], in transform() 218 cc = _state[2], in transform() 219 dd = _state[3], in transform() 220 ee = _state[4]; in transform() 221 uint aaa = _state[0], in transform() 222 bbb = _state[1], in transform() 223 ccc = _state[2], in transform() 224 ddd = _state[3], in transform() [all …]
|
| H A D | md.d | 93 uint[4] _state = [0x67452301,0xefcdab89,0x98badcfe,0x10325476]; // state (ABCD) 177 uint a = _state[0], in transform() 178 b = _state[1], in transform() 179 c = _state[2], in transform() 180 d = _state[3]; in transform() 270 _state[0] += a; in transform() 271 _state[1] += b; in transform() 272 _state[2] += c; in transform() 273 _state[3] += d; in transform() 377 data[0 .. 4] = nativeToLittleEndian(_state[0])[]; in finish() [all …]
|
| H A D | crc.d | 181 T _state = T.max; variable 191 T crc = _state; in put() 246 _state = crc; in put() 282 return nativeToLittleEndian(~_state); in peek()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/digest/ |
| H A D | ripemd.d | 104 uint[5] _state = [0x67452301,0xefcdab89,0x98badcfe,0x10325476,0xc3d2e1f0]; // state (ABCDE) 223 uint aa = _state[0], in transform() 224 bb = _state[1], in transform() 225 cc = _state[2], in transform() 226 dd = _state[3], in transform() 227 ee = _state[4]; in transform() 228 uint aaa = _state[0], in transform() 229 bbb = _state[1], in transform() 230 ccc = _state[2], in transform() 231 ddd = _state[3], in transform() [all …]
|
| H A D | md.d | 100 uint[4] _state = [0x67452301,0xefcdab89,0x98badcfe,0x10325476]; // state (ABCD) 184 uint a = _state[0], in transform() 185 b = _state[1], in transform() 186 c = _state[2], in transform() 187 d = _state[3]; in transform() 277 _state[0] += a; in transform() 278 _state[1] += b; in transform() 279 _state[2] += c; in transform() 280 _state[3] += d; in transform() 384 data[0 .. 4] = nativeToLittleEndian(_state[0])[]; in finish() [all …]
|
| H A D | crc.d | 184 T _state = T.max; variable 194 T crc = _state; in put() 245 _state = crc; in put() 281 return nativeToLittleEndian(~_state); in peek()
|
| /netbsd-src/external/mpl/bind/dist/lib/isc/ |
| H A D | picohttpparser.c | 609 switch (decoder->_state) { in phr_decode_chunked() 632 decoder->_state = CHUNKED_IN_CHUNK_EXT; in phr_decode_chunked() 648 decoder->_state = in phr_decode_chunked() 655 decoder->_state = CHUNKED_IN_CHUNK_DATA; in phr_decode_chunked() 675 decoder->_state = CHUNKED_IN_CHUNK_CRLF; in phr_decode_chunked() 692 decoder->_state = CHUNKED_IN_CHUNK_SIZE; in phr_decode_chunked() 706 decoder->_state = CHUNKED_IN_TRAILERS_LINE_MIDDLE; in phr_decode_chunked() 718 decoder->_state = CHUNKED_IN_TRAILERS_LINE_HEAD; in phr_decode_chunked() 737 return decoder->_state == CHUNKED_IN_CHUNK_DATA;
|
| H A D | picohttpparser.h | 78 char _state; member
|
| /netbsd-src/sys/kern/ |
| H A D | sys_aio.c | 453 a_job->aiocbp._state = JOB_DONE; 553 aiocbp._state = JOB_WIP; in aio_enqueue_job() 693 a_job->aiocbp._state = JOB_DONE; in sys_aio_cancel() 736 if (aiocbp._state == JOB_NONE) in sys_aio_error() 792 if (aiocbp._errno == EINPROGRESS || aiocbp._state != JOB_DONE) in sys_aio_return() 800 aiocbp._state = JOB_NONE; in sys_aio_return() 891 if (error == 0 && aiocbp._state != JOB_DONE) { in aio_suspend1() 1156 a_job->aiocbp._state, a_job->aiocb_uptr); in aio_print_jobs() 1167 a_job->aiocbp._state, a_job->aiocb_uptr); in aio_print_jobs()
|
| /netbsd-src/usr.sbin/installboot/ |
| H A D | ext2fs.c | 375 ext2fs_findstage2_blocks(ib_params *params, void *_state, in ext2fs_findstage2_blocks() argument 378 struct findblks_state *state = _state; in ext2fs_findstage2_blocks() 382 assert(_state != NULL); in ext2fs_findstage2_blocks()
|
| H A D | ffs.c | 442 ffs_findstage2_blocks(ib_params *params, void *_state, in ffs_findstage2_blocks() argument 445 struct findblks_state *state = _state; in ffs_findstage2_blocks() 449 assert(_state != NULL); in ffs_findstage2_blocks()
|
| /netbsd-src/sys/sys/ |
| H A D | aio.h | 63 int _state; /* State of the job */ member
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
| H A D | random.d | 1337 UIntType[N] _state = [cast(UIntType) 2_463_534_242]; 1341 … UIntType[N] _state = [123_456_789, 362_436_069, 521_288_629, 88_675_123, 5_783_321, 6_615_241]; 1346 UIntType[N] _state = [ 1355 UIntType[N] _state = () 1412 foreach (uint i, ref e; _state) in seed() 1430 foreach (ref e; _state) in seed() 1447 _state[0] = x0 * 6_364_136_223_846_793_005UL; in seed() 1449 _state[0] = typeof(this).init._state[0]; in seed() 1471 return _state[N-1]; in front() 1473 return _state[_index]; in front() [all …]
|
| /netbsd-src/external/bsd/tre/dist/lib/ |
| H A D | tre-match-backtrack.c | 110 #define BT_STACK_PUSH(_pos, _str_byte, _str_wide, _state, _state_id, _next_c, _tags, _mbstate) \ argument 152 stack->item.state = (_state); \
|
| /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| H A D | sanitizer_platform_limits_openbsd.h | 73 u32 _state; member
|
| /netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| H A D | sanitizer_platform_limits_openbsd.h | 71 u32 _state; member
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/posix/ |
| H A D | aio.d | 153 private int _state;
|
| /netbsd-src/sys/dev/ic/ |
| H A D | athvar.h | 402 #define ath_hal_setledstate(_ah, _state) \ argument 403 ((*(_ah)->ah_setLedState)((_ah), (_state)))
|
| /netbsd-src/lib/libc/citrus/ |
| H A D | citrus_ctype_template.h | 477 _ENCODING_STATE _state; \ 485 _pse_ = &_state; \
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/i915/display/ |
| H A D | intel_dp_mst.c | 276 struct drm_atomic_state *_state) in intel_dp_mst_atomic_check() argument 278 struct intel_atomic_state *state = to_intel_atomic_state(_state); in intel_dp_mst_atomic_check()
|