Home
last modified time | relevance | path

Searched refs:where (Results 1 – 25 of 212) sorted by relevance

123456789

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dcgitb.py92 where, value = lookup(token, frame, locals)
93 vars.append((token, where, value))
154 for name, where, value in vars:
158 if where in ('global', 'builtin'):
159 name = ('<em>%s</em> ' % where) + strong(name)
160 elif where == 'local':
163 name = where + strong(name.split('.')[-1])
232 for name, where, value in vars:
236 if where == 'global': name = 'global ' + name
237 elif where != 'local': name = where + name.split('.')[-1]
/device/linaro/bootloader/edk2/EmulatorPkg/
DREADME4 EmulatorPkg provides an environment where a UEFI environment can be
5 emulated under an environment where a full UEFI compatible
7 where an OS process hosts the UEFI emulation environment.)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dceval.h48 #define Py_EnterRecursiveCall(where) \ argument
50 _Py_CheckRecursiveCall(where))
53 PyAPI_FUNC(int) _Py_CheckRecursiveCall(char *where);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dceval.h48 #define Py_EnterRecursiveCall(where) \ argument
50 _Py_CheckRecursiveCall(where))
53 PyAPI_FUNC(int) _Py_CheckRecursiveCall(char *where);
/device/google/contexthub/firmware/
DREADME21 # where <variant_path> is relative path to OS variant dir;
29 # where <nanoapp_path> is relative path to nanoapp;
47 # where $OUT is lunch shell environment variable
/device/google/contexthub/util/nanoapp_postprocess/
Dpostprocess.c53 uint32_t where; member
340 ERR(" Where: 0x%08" PRIX32, reloc->where); in relocDiag()
356 uint32_t relocOffset = reloc->where; in fixupReloc()
362 } else if (IS_IN_RAM(reloc->where)) { in fixupReloc()
363 relocOffset = reloc->where - RAM_BASE; in fixupReloc()
494 if (IS_IN_RANGE_E(reloc->where, sect->bss_start, sect->bss_end)) in handleApp()
496 else if (IS_IN_RANGE_E(reloc->where, sect->data_start, sect->data_end)) in handleApp()
498 else if (IS_IN_RANGE_E(reloc->where, sect->got_start, sect->got_end)) in handleApp()
500 else if (IS_IN_RANGE_E(reloc->where, FLASH_BASE, FLASH_BASE + sizeof(struct BinHdr))) in handleApp()
506 i, reloc->where, reloc->info & 0xff, whichSym, sym->addr, seg); in handleApp()
[all …]
Dpostprocess_elf.c55 uint32_t where; member
366 i, relocs[i].where, relocs[i].info & 0xff, whichSym); in handleApp()
374 i, relocs[i].where, relocs[i].info & 0xff, whichSym, syms[whichSym].addr); in handleApp()
376 if (IS_IN_RANGE_E(relocs[i].where, sect->bss_start, sect->bss_end)) in handleApp()
378 else if (IS_IN_RANGE_E(relocs[i].where, sect->data_start, sect->data_end)) in handleApp()
380 else if (IS_IN_RANGE_E(relocs[i].where, sect->got_start, sect->got_end)) in handleApp()
382 else if (IS_IN_RANGE_E(relocs[i].where, FLASH_BASE, FLASH_BASE + sizeof(struct BinHdr))) in handleApp()
390 …if (IS_IN_FLASH(relocs[i].where) && relocs[i].where - FLASH_BASE < sizeof(struct BinHdr) && relocT… in handleApp()
398 valThereP = (uint32_t*)(buf + relocs[i].where - FLASH_BASE); in handleApp()
405 i, relocs[i].where, relocType, whichSym, syms[whichSym].addr); in handleApp()
[all …]
/device/google/contexthub/firmware/os/cpu/cortexm4/
DappSupport.c37 uint32_t base, where; in handleRelNumber() local
53 where = *ofstP + value; in handleRelNumber()
54 *ofstP = where + 1; in handleRelNumber()
56 mem[where] += base; in handleRelNumber()
/device/linaro/bootloader/edk2/MdePkg/Library/PeiMemoryLib/
DPeiMemoryLib.uni5 // where possible for size reduction.
21 …language en-US "Base Memory Library implementation that uses PEI Services where possible, for size…
/device/linaro/bootloader/edk2/UefiCpuPkg/Library/BaseXApicLib/
DBaseXApicLib.uni5 // where local APIC is disabled.
22 …ocal APIC library assumes local APIC is enabled. It does not handle cases where local APIC is disa…
/device/linaro/bootloader/edk2/MdePkg/Library/UefiMemoryLib/
DUefiMemoryLib.uni5 // where possible for size reduction.
21 …age en-US "Base Memory Library implementation that uses EFI Boot Services where possible, for size…
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dbytearrayobject.c2213 Py_ssize_t where, n = Py_SIZE(self); in bytearray_insert() local
2215 if (!PyArg_ParseTuple(args, "nO:insert", &where, &value)) in bytearray_insert()
2228 if (where < 0) { in bytearray_insert()
2229 where += n; in bytearray_insert()
2230 if (where < 0) in bytearray_insert()
2231 where = 0; in bytearray_insert()
2233 if (where > n) in bytearray_insert()
2234 where = n; in bytearray_insert()
2235 memmove(self->ob_bytes + where + 1, self->ob_bytes + where, n - where); in bytearray_insert()
2236 self->ob_bytes[where] = ival; in bytearray_insert()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dbytearrayobject.c2217 Py_ssize_t where, n = Py_SIZE(self); in bytearray_insert() local
2219 if (!PyArg_ParseTuple(args, "nO:insert", &where, &value)) in bytearray_insert()
2232 if (where < 0) { in bytearray_insert()
2233 where += n; in bytearray_insert()
2234 if (where < 0) in bytearray_insert()
2235 where = 0; in bytearray_insert()
2237 if (where > n) in bytearray_insert()
2238 where = n; in bytearray_insert()
2239 memmove(self->ob_bytes + where + 1, self->ob_bytes + where, n - where); in bytearray_insert()
2240 self->ob_bytes[where] = ival; in bytearray_insert()
[all …]
Dlistsort.txt50 much deeper than those, in particular naturally covering every case where
331 stack entries, where A, B and C are the lengths of the three righmost not-yet
341 where phi = (1+sqrt(5))/2 ~= 1.618. Thus a small # of stack slots suffice
374 where all runs are likely to be of (artificially forced) length minrun, and
391 area and B, starting the stores into where A used to live. There's always a
402 temp array and starting the stores at the right end of where B used to live.
405 a form of binary search (more on that later) to see where B[0] should end up
408 see where A[-1] should end up in B, and elements of B after that point can
423 merge_lo() and merge_hi() are where the bulk of the time is spent. merge_lo
424 deals with runs where A <= B, and merge_hi where A > B. They don't know
[all …]
/device/linaro/bootloader/edk2/BaseTools/
DReadMe.txt17 * BASE_TOOLS_PATH - The directory where the BaseTools source is located.
18 (It is the same directory where this README.txt is located.)
19 * PYTHON_FREEZER_PATH - Path to where the python freezer tool is installed
/device/linaro/bootloader/edk2/UefiCpuPkg/Library/BaseXApicX2ApicLib/
DBaseXApicX2ApicLib.uni5 // where local APIC is disabled.
22 …ocal APIC library assumes local APIC is enabled. It does not handle cases where local APIC is disa…
/device/linaro/bootloader/edk2/EmbeddedPkg/Scripts/LauterbachT32/
DREADME.txt7where these images reside so you must pass an address for the memory-mapped Firmware Volume contai…
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/SectionExtractionDxe/
DSectionExtractionDxe.uni5 // where each stream contains a linked list of children, which may be leaves or
23 …ge en-US "The section is implemented as a linked list of section streams, where each stream contai…
/device/linaro/bootloader/edk2/UefiCpuPkg/ResetVector/Vtf0/Ia16/
DResetVectorVtf0.asm24 ; sure the end of VTF0 is 4k above where the page tables end.
62 ; This is where the processor will begin execution
/device/sample/apps/tv/SetupCustomizationSample/
Dbuild.gradle1 // Top-level build file where you can add configuration options common to all sub-projects/modules.
/device/sample/apps/tv/SetupValidation/
Dbuild.gradle1 // Top-level build file where you can add configuration options common to all sub-projects/modules.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dmactoolboxglue.c273 &e->where.h, in PyMac_GetEventRecord()
274 &e->where.v, in PyMac_GetEventRecord()
286 e->where.h, in PyMac_BuildEventRecord()
287 e->where.v, in PyMac_BuildEventRecord()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/versioncheck/
DREADME9 versions, where to download the package, etc.
35 It should be fine where it is, it is imported by checkversion before anything
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Darraymodule.c463 ins1(arrayobject *self, Py_ssize_t where, PyObject *v) in ins1() argument
477 if (where < 0) { in ins1()
478 where += n; in ins1()
479 if (where < 0) in ins1()
480 where = 0; in ins1()
482 if (where > n) in ins1()
483 where = n; in ins1()
485 if (where != n) in ins1()
486 memmove(items + (where+1)*self->ob_descr->itemsize, in ins1()
487 items + where*self->ob_descr->itemsize, in ins1()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Darraymodule.c463 ins1(arrayobject *self, Py_ssize_t where, PyObject *v) in ins1() argument
477 if (where < 0) { in ins1()
478 where += n; in ins1()
479 if (where < 0) in ins1()
480 where = 0; in ins1()
482 if (where > n) in ins1()
483 where = n; in ins1()
485 if (where != n) in ins1()
486 memmove(items + (where+1)*self->ob_descr->itemsize, in ins1()
487 items + where*self->ob_descr->itemsize, in ins1()
[all …]

123456789