Home
last modified time | relevance | path

Searched refs:lstop (Results 1 – 4 of 4) sorted by relevance

/external/oss-fuzz/projects/lua/
Dfuzz_lua.c53 static void lstop (lua_State *L, lua_Debug *ar) { in lstop() function
69 lua_sethook(globalL, lstop, flag, 1); in laction()
/external/bcc/src/lua/src/
Dmain.c39 static void lstop(lua_State *L, lua_Debug *ar) { in lstop() function
47 lua_sethook(globalL, lstop, LUA_MASKCALL | LUA_MASKRET | LUA_MASKCOUNT, 1); in laction()
/external/python/cpython3/Objects/
Drangeobject.c1073 long lstart, lstop, lstep; in range_iter() local
1085 lstop = PyLong_AsLong(r->stop); in range_iter()
1086 if (lstop == -1 && PyErr_Occurred()) { in range_iter()
1095 int_it = fast_range_iter(lstart, lstop, lstep); in range_iter()
1124 long lstart, lstop, lstep, new_start, new_stop; in range_reverse() local
1144 lstop = PyLong_AsLong(range->stop); in range_reverse()
1145 if (lstop == -1 && PyErr_Occurred()) { in range_reverse()
1180 ulen = get_len_of_range(lstart, lstop, lstep); in range_reverse()
/external/lua/src/
Dlua.c43 static void lstop (lua_State *L, lua_Debug *ar) { in lstop() function
59 lua_sethook(globalL, lstop, flag, 1); in laction()