/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | pymath.h | 73 # define Py_FORCE_DOUBLE(X) (_Py_force_double(X)) argument 75 # define Py_FORCE_DOUBLE(X) (X) argument 95 #define Py_IS_NAN(X) isnan(X) argument 97 #define Py_IS_NAN(X) ((X) != (X)) argument 115 # define Py_IS_INFINITY(X) isinf(X) argument 117 # define Py_IS_INFINITY(X) ((X) && \ argument 118 (Py_FORCE_DOUBLE(X)*0.5 == Py_FORCE_DOUBLE(X))) 130 #define Py_IS_FINITE(X) isfinite(X) argument 132 #define Py_IS_FINITE(X) finite(X) argument 134 #define Py_IS_FINITE(X) (!Py_IS_INFINITY(X) && !Py_IS_NAN(X)) argument [all …]
|
D | py_curses.h | 116 #define NoArgNoReturnFunction(X) \ argument 117 static PyObject *PyCurses_ ## X (PyObject *self) \ 120 return PyCursesCheckERR(X(), # X); } 122 #define NoArgOrFlagNoReturnFunction(X) \ argument 123 static PyObject *PyCurses_ ## X (PyObject *self, PyObject *args) \ 129 return PyCursesCheckERR(X(), # X); \ 132 if (flag) return PyCursesCheckERR(X(), # X); \ 133 else return PyCursesCheckERR(no ## X (), # X); \ 135 PyErr_SetString(PyExc_TypeError, # X " requires 0 or 1 arguments"); \ 138 #define NoArgReturnIntFunction(X) \ argument [all …]
|
D | pyport.h | 447 #define Py_FORCE_EXPANSION(X) X argument 472 #define _Py_SET_EDOM_FOR_NAN(X) if (isnan(X)) errno = EDOM; argument 474 #define _Py_SET_EDOM_FOR_NAN(X) ; 476 #define Py_SET_ERRNO_ON_MATH_ERROR(X) \ argument 479 if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL) \ 481 else _Py_SET_EDOM_FOR_NAN(X) \ 488 #define Py_SET_ERANGE_IF_OVERFLOW(X) Py_SET_ERRNO_ON_MATH_ERROR(X) argument 504 #define Py_ADJUST_ERANGE1(X) \ argument 507 if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL) \ 510 else if (errno == ERANGE && (X) == 0.0) \ [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | pymath.h | 73 # define Py_FORCE_DOUBLE(X) (_Py_force_double(X)) argument 75 # define Py_FORCE_DOUBLE(X) (X) argument 95 #define Py_IS_NAN(X) isnan(X) argument 97 #define Py_IS_NAN(X) ((X) != (X)) argument 115 # define Py_IS_INFINITY(X) isinf(X) argument 117 # define Py_IS_INFINITY(X) ((X) && \ argument 118 (Py_FORCE_DOUBLE(X)*0.5 == Py_FORCE_DOUBLE(X))) 130 #define Py_IS_FINITE(X) isfinite(X) argument 132 #define Py_IS_FINITE(X) finite(X) argument 134 #define Py_IS_FINITE(X) (!Py_IS_INFINITY(X) && !Py_IS_NAN(X)) argument [all …]
|
D | py_curses.h | 116 #define NoArgNoReturnFunction(X) \ argument 117 static PyObject *PyCurses_ ## X (PyObject *self) \ 120 return PyCursesCheckERR(X(), # X); } 122 #define NoArgOrFlagNoReturnFunction(X) \ argument 123 static PyObject *PyCurses_ ## X (PyObject *self, PyObject *args) \ 129 return PyCursesCheckERR(X(), # X); \ 132 if (flag) return PyCursesCheckERR(X(), # X); \ 133 else return PyCursesCheckERR(no ## X (), # X); \ 135 PyErr_SetString(PyExc_TypeError, # X " requires 0 or 1 arguments"); \ 138 #define NoArgReturnIntFunction(X) \ argument [all …]
|
D | pyport.h | 446 #define Py_FORCE_EXPANSION(X) X argument 471 #define _Py_SET_EDOM_FOR_NAN(X) if (isnan(X)) errno = EDOM; argument 473 #define _Py_SET_EDOM_FOR_NAN(X) ; 475 #define Py_SET_ERRNO_ON_MATH_ERROR(X) \ argument 478 if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL) \ 480 else _Py_SET_EDOM_FOR_NAN(X) \ 487 #define Py_SET_ERANGE_IF_OVERFLOW(X) Py_SET_ERRNO_ON_MATH_ERROR(X) argument 503 #define Py_ADJUST_ERANGE1(X) \ argument 506 if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL) \ 509 else if (errno == ERANGE && (X) == 0.0) \ [all …]
|
/device/linaro/hikey/uefi-tools/ |
D | atf-build.sh | 37 if [ X"$EDK2_DIR" = X"" ];then 45 if [ X"$BUILD_ATF" = X"" ]; then 51 if [ X"$ATF_PLATFORM" = X"" ]; then 87 if [ X"$BL30" != X"" ]; then 90 if [ X"$BL31" != X"" ]; then 99 if [ X"$TOS_DIR" != X"" ]; then 103 if [ X"$TOS_BIN" != X"" ]; then 107 if [ X"$SPD" != X"" ] && [ X"$BL32" != X"" ]; then 128 if [ X"$SPM_BIN" != X"" ]; then 155 if [ $ATF_BUILDVER -gt 1 ] && [ X"$BL30" != X"" ]; then [all …]
|
D | tos-build.sh | 22 if [ X"$EDK2_DIR" = X"" ];then 27 if [ X"`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $1 get -o build_tos`" = X"" ]; then 79 if [ X"$build" = X"" ]; then
|
D | opteed-build.sh | 25 if [ X"$TOS_PLATFORM" = X"" ]; then 27 if [ X"$TOS_PLATFORM" = X"" ]; then 150 if [ X"$build" = X"" ]; then
|
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/ |
D | Thunk.c | 62 Regs->X.Flags.Reserved1 = 1; in LegacyBiosInt86() 63 Regs->X.Flags.Reserved2 = 0; in LegacyBiosInt86() 64 Regs->X.Flags.Reserved3 = 0; in LegacyBiosInt86() 65 Regs->X.Flags.Reserved4 = 0; in LegacyBiosInt86() 66 Regs->X.Flags.IOPL = 3; in LegacyBiosInt86() 67 Regs->X.Flags.NT = 0; in LegacyBiosInt86() 68 Regs->X.Flags.IF = 0; in LegacyBiosInt86() 69 Regs->X.Flags.TF = 0; in LegacyBiosInt86() 70 Regs->X.Flags.CF = 0; in LegacyBiosInt86() 82 &Regs->X.Flags, in LegacyBiosInt86() [all …]
|
D | LegacyBios.c | 133 Regs.X.AX = Legacy16GetTableAddress; in LegacyBiosGetLegacyRegion() 134 Regs.X.BX = (UINT16) Region; in LegacyBiosGetLegacyRegion() 135 Regs.X.CX = (UINT16) LegacyMemorySize; in LegacyBiosGetLegacyRegion() 136 Regs.X.DX = (UINT16) Alignment; in LegacyBiosGetLegacyRegion() 146 if (Regs.X.AX == 0) { in LegacyBiosGetLegacyRegion() 147 *LegacyMemoryAddress = (VOID *) (UINTN) ((Regs.X.DS << 4) + Regs.X.BX); in LegacyBiosGetLegacyRegion() 421 Regs.X.AX = Legacy16InitializeYourself; in ShadowAndStartLegacy16() 422 Regs.X.ES = EFI_SEGMENT (*((UINT32 *) &EfiToLegacy16InitTable)); in ShadowAndStartLegacy16() 423 Regs.X.BX = EFI_OFFSET (*((UINT32 *) &EfiToLegacy16InitTable)); in ShadowAndStartLegacy16() 439 if (Regs.X.AX != 0) { in ShadowAndStartLegacy16() [all …]
|
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/Ipf/ |
D | Thunk.c | 75 DwordRegs.Ds = Regs->X.DS; in BiosIntCall() 76 DwordRegs.Es = Regs->X.ES; in BiosIntCall() 77 DwordRegs.Fs = Regs->X.ES; in BiosIntCall() 78 DwordRegs.Gs = Regs->X.ES; in BiosIntCall() 81 DwordRegs.Eax = Regs->X.AX; in BiosIntCall() 82 DwordRegs.Ebx = Regs->X.BX; in BiosIntCall() 88 DwordRegs.Edx = Regs->X.DX; in BiosIntCall() 90 DwordRegs.Ebp = Regs->X.BP; in BiosIntCall() 91 DwordRegs.Eflag = *((UINT16 *) &Regs->X.Flags); in BiosIntCall() 93 DwordRegs.Edi = Regs->X.DI; in BiosIntCall() [all …]
|
/device/linaro/bootloader/edk2/OptionRomPkg/Application/BltLibSample/ |
D | BltLibSample.c | 76 UINTN X; in TestFills() local 88 X = Rand32 () % (Width - W); in TestFills() 90 X = 0; in TestFills() 98 BltLibVideoFill (&Color, X, Y, W, H); in TestFills() 109 UINTN X; in TestColor1() local 118 for (X = 0; X < Width; X++) { in TestColor1() 119 Color.Red = (UINT8) ((X * 0x100) / Width); in TestColor1() 122 BltLibVideoFill (&Color, X, Y, 1, 1); in TestColor1() 164 IN UINTN X, in Uint32Dist() argument 168 return Uint32SqRt ((UINT32) ((X * X) + (Y * Y))); in Uint32Dist() [all …]
|
/device/google/cuttlefish_common/guest/libs/platform_support/ |
D | api_level_fixes.h | 74 #define VSOC_PLATFORM_SDK_BEFORE(X) (VSOC_PLATFORM_SDK_VERSION < VSOC_PLATFORM_SDK_##X) argument 75 #define VSOC_PLATFORM_SDK_AFTER(X) (VSOC_PLATFORM_SDK_VERSION > VSOC_PLATFORM_SDK_##X) argument 78 #define VSOC_STATIC_INITIALIZER(X) X: argument 80 #define VSOC_STATIC_INITIALIZER(X) .X = argument
|
/device/generic/opengl-transport/host/libs/virglrenderer/OpenGLESDispatch/ |
D | gles_functions.h | 26 #define LIST_GLES1_FUNCTIONS(X, Y) \ argument 27 LIST_GLES1_CORE_FUNCTIONS(X) \ 30 #define LIST_GLES3_FUNCTIONS(X, Y) \ argument 31 LIST_GLES2_CORE_FUNCTIONS(X) \ 33 LIST_GLES3_ONLY_FUNCTIONS(X) \ 34 LIST_GLES31_ONLY_FUNCTIONS(X)
|
/device/linaro/bootloader/edk2/OptionRomPkg/Library/FrameBufferBltLib/ |
D | FrameBufferBltLib.c | 240 UINTN X; in BltLibVideoFill() local 285 for (X = mBltLibBytesPerPixel; X < sizeof (WideFill); X++) { in BltLibVideoFill() 286 ((UINT8*)&WideFill)[X] = ((UINT8*)&WideFill)[X % mBltLibBytesPerPixel]; in BltLibVideoFill() 294 X = 1, Uint8 = ((UINT8*)&WideFill)[0]; in BltLibVideoFill() 295 X < mBltLibBytesPerPixel; in BltLibVideoFill() 296 X++) { in BltLibVideoFill() 297 if (Uint8 != ((UINT8*)&WideFill)[X]) { in BltLibVideoFill() 341 for (X = 1; X < Width; ) { in BltLibVideoFill() 343 (mBltLibLineBuffer + (X * mBltLibBytesPerPixel)), in BltLibVideoFill() 345 MIN (X, Width - X) * mBltLibBytesPerPixel in BltLibVideoFill() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/test/data/ |
D | msg_06.txt | 13 X-Mailer: VM 6.95 under 21.4 (patch 4) "Artificial Intelligence" XEmacs Lucid 14 X-Attribution: BAW 15 X-Oblique-Strategy: Be dirty 16 X-Url: http://barry.wooz.org 28 X-Mailer: VM 6.95 under 21.4 (patch 4) "Artificial Intelligence" XEmacs Lucid 29 X-Attribution: BAW 30 X-Oblique-Strategy: Spectrum analysis 31 X-Url: http://barry.wooz.org
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Include/ |
D | pyport.h | 447 #define Py_FORCE_EXPANSION(X) X argument 472 #define _Py_SET_EDOM_FOR_NAN(X) if (isnan(X)) errno = EDOM; argument 474 #define _Py_SET_EDOM_FOR_NAN(X) ; 476 #define Py_SET_ERRNO_ON_MATH_ERROR(X) \ argument 479 if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL) \ 481 else _Py_SET_EDOM_FOR_NAN(X) \ 488 #define Py_SET_ERANGE_IF_OVERFLOW(X) Py_SET_ERRNO_ON_MATH_ERROR(X) argument 504 #define Py_ADJUST_ERANGE1(X) \ argument 507 if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL) \ 510 else if (errno == ERANGE && (X) == 0.0) \ [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Include/ |
D | pyport.h | 462 #define Py_FORCE_EXPANSION(X) X argument 487 #define _Py_SET_EDOM_FOR_NAN(X) if (isnan(X)) errno = EDOM; argument 489 #define _Py_SET_EDOM_FOR_NAN(X) ; 491 #define Py_SET_ERRNO_ON_MATH_ERROR(X) \ argument 494 if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL) \ 496 else _Py_SET_EDOM_FOR_NAN(X) \ 503 #define Py_SET_ERANGE_IF_OVERFLOW(X) Py_SET_ERRNO_ON_MATH_ERROR(X) argument 519 #define Py_ADJUST_ERANGE1(X) \ argument 522 if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL) \ 525 else if (errno == ERANGE && (X) == 0.0) \ [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_normalization.py | 88 X = unichr(c) 89 if X in part1_data: 91 self.assertTrue(X == NFC(X) == NFD(X) == NFKC(X) == NFKD(X), c)
|
D | test_typechecks.py | 76 class X: class 81 class Sub(X): pass 82 self.assertNotIsInstance(3, X) 83 self.assertIsInstance(X(), X) 84 self.assertFalse(issubclass(int, X)) 85 self.assertTrue(issubclass(Sub, X))
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/crashers/ |
D | loosing_mro_ref.py | 15 X.__bases__ = (Base2,) 32 X = type('X', (Base,), {MyKey(): 5}) variable 34 print X.mykey
|
/device/linaro/bootloader/edk2/StdLib/Include/X64/machine/ |
D | asm.h | 73 ALIGN_TEXT; .globl X ## name; .type X ## name,@function; X ## name: 76 ALIGN_TEXT; .globl X/**/name; .type X/**/name,@function; X/**/name:
|
/device/google/cuttlefish_common/guest/hals/sensors/ |
D | sensors_hal.h | 34 #define VSOC_SENSORS_DEVICE_API_VERSION_ATLEAST(X) \ argument 35 (defined (SENSORS_DEVICE_API_VERSION_##X) && \ 36 (VSOC_SENSOR_DEVICE_VERSION >= SENSORS_DEVICE_API_VERSION_##X))
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/ |
D | README | 48 The euc-jisx0213 codec maps JIS X 0213 Plane 1 code 0x2140 into 54 The euc-jisx0213 codec is enabled to decode JIS X 0212 codes on 55 codeset 2. Because JIS X 0212 and JIS X 0213 Plane 2 don't have 57 (and JIS X 0213 Plane 2 is intended to use so.) On encoding 61 JIS X 0213 Plane 1 -> JIS X 0213 Plane 2 -> JIS X 0212 75 instead of using JIS X 0201 for compatibility. The differences are:
|