Searched refs:temparray (Results 1 – 5 of 5) sorted by relevance
/external/strace/ |
D | mpers.awk | 162 match(ARCH_FLAG, /[[:digit:]]+/, temparray) 163 default_pointer_size = temparray[0] / 8 174 if (!match($0, /\(DW_OP_plus_uconst:[[:space:]]+([[:digit:]]+)\)/, temparray)) 175 match($0, /([[:digit:]]+)/, temparray) 176 array[idx, "location"] = temparray[1] 180 temparray) 182 array[idx, "name"] = temparray[1] 185 match($0, /[[:digit:]]+/, temparray) 186 array[idx, "byte_size"] = temparray[0] 189 match($0, /[[:digit:]]+/, temparray) [all …]
|
/external/python/cpython3/Objects/ |
D | listobject.c | 1149 PyObject *temparray[MERGESTATE_TEMP_SIZE]; member 1493 ms->a.values = &ms->temparray[ms->alloced]; in merge_init() 1499 ms->a.keys = ms->temparray; in merge_init() 1512 if (ms->a.keys != ms->temparray) in merge_freemem() 2191 keys = &ms.temparray[saved_ob_size+1]; in list_sort_impl()
|
D | listsort.txt | 204 temparray member of the MergeState struct (note that the same would be
|
/external/python/cpython2/Objects/ |
D | listobject.c | 1393 PyObject *temparray[MERGESTATE_TEMP_SIZE]; member 1402 ms->a = ms->temparray; in merge_init() 1416 if (ms->a != ms->temparray) in merge_freemem() 1418 ms->a = ms->temparray; in merge_freemem()
|
D | listsort.txt | 204 temparray member of the MergeState struct (note that the same would be
|