Home
last modified time | relevance | path

Searched refs:SET_ADD (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Include/
Dopcode.h159 #define SET_ADD 146 macro
/external/python/cpython3/Include/
Dopcode.h116 #define SET_ADD 146 macro
/external/icu/icu4c/source/common/
Dunames.cpp1200 #define SET_ADD(set, c) ((set)[(uint8_t)c>>5]|=((uint32_t)1<<((uint8_t)c&0x1f))) macro
1209 SET_ADD(set, c); in calcStringSetLength()
1307 SET_ADD(set, c); in calcNameSetLength()
1318 SET_ADD(set, c); in calcNameSetLength()
1428 SET_ADD(gNameSet, extChars[i]); in calcNameSetsLengths()
/external/python/cpython3/Doc/library/
Ddis.rst573 .. opcode:: SET_ADD (i)
588 For all of the :opcode:`SET_ADD`, :opcode:`LIST_APPEND` and :opcode:`MAP_ADD`
/external/python/cpython3/Python/
Dcompile.c883 case SET_ADD: in PyCompile_OpcodeStackEffect()
3716 ADDOP_I(c, SET_ADD, gen_index + 1); in compiler_sync_comprehension_generator()
3847 ADDOP_I(c, SET_ADD, gen_index + 1); in compiler_async_comprehension_generator()
Dceval.c1545 TARGET(SET_ADD) { in _PyEval_EvalFrameDefault()
/external/python/cpython2/Python/
Dcompile.c706 case SET_ADD: in opcode_stack_effect()
2717 ADDOP_I(c, SET_ADD, gen_index + 1); in compiler_comprehension_generator()
Dceval.c1620 TARGET(SET_ADD) in PyEval_EvalFrameEx()