OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:addrmap
(Results
1 - 2
of
2
) sorted by null
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
peephole.c
307
int *
addrmap
= NULL;
local
346
addrmap
= PyMem_New(int, codelen);
347
if (
addrmap
== NULL) {
601
addrmap
[i] = i - nops;
609
new_line =
addrmap
[cum_orig_line];
629
j =
addrmap
[GETARG(codestr, i)];
639
j =
addrmap
[GETARG(codestr, i) + i + 3] -
addrmap
[i] - 3;
650
PyMem_Free(
addrmap
);
661
if (
addrmap
!= NULL)
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
peephole.c
318
int *
addrmap
= NULL;
local
357
addrmap
= (int *)PyMem_Malloc(codelen * sizeof(int));
358
if (
addrmap
== NULL)
614
addrmap
[i] = i - nops;
622
new_line =
addrmap
[cum_orig_line];
642
j =
addrmap
[GETARG(codestr, i)];
652
j =
addrmap
[GETARG(codestr, i) + i + 3] -
addrmap
[i] - 3;
663
PyMem_Free(
addrmap
);
674
if (
addrmap
!= NULL)
[
all
...]
Completed in 56 milliseconds