/device/linaro/bootloader/edk2/StdLib/LibC/String/ |
D | Searching.c | 60 #define BITMAP64 ((UINT64 *)bitmap) 64 BuildBitmap(unsigned char * bitmap, const char *s2, int n) in BuildBitmap() argument 77 bitmap[index] = bitmap[index] | bit; in BuildBitmap() 90 UINT8 bitmap[ (((UCHAR_MAX + 1) / CHAR_BIT) + (CHAR_BIT - 1)) & ~7U]; in strcspn() local 97 BuildBitmap( bitmap, s2, sizeof(bitmap) / sizeof(UINT64)); in strcspn() 102 if ((bitmap[index] & bit) != 0) in strcspn() 117 UINT8 bitmap[ (((UCHAR_MAX + 1) / CHAR_BIT) + (CHAR_BIT - 1)) & ~7U]; in strpbrk() local 121 BuildBitmap( bitmap, s2, sizeof(bitmap) / sizeof(UINT64)); in strpbrk() 126 if( (bitmap[index] & bit) != 0) { in strpbrk() 162 UINT8 bitmap[ (((UCHAR_MAX + 1) / CHAR_BIT) + (CHAR_BIT - 1)) & ~7U]; in strspn() local [all …]
|
/device/linaro/hikey/hifi/xaf/hifi-dpf/include/sys/xt-shmem/ |
D | xf-hal.h | 91 static inline int xf_atomic_test_and_set(volatile u32 *bitmap, u32 mask) in xf_atomic_test_and_set() argument 98 v = *bitmap, *bitmap = v | mask; in xf_atomic_test_and_set() 104 static inline int xf_atomic_test_and_clear(volatile u32 *bitmap, u32 mask) in xf_atomic_test_and_clear() argument 111 v = *bitmap, *bitmap = v & ~mask; in xf_atomic_test_and_clear() 117 static inline u32 xf_atomic_set(volatile u32 *bitmap, u32 mask) in xf_atomic_set() argument 124 v = *bitmap, *bitmap = (v |= mask); in xf_atomic_set() 130 static inline u32 xf_atomic_clear(volatile u32 *bitmap, u32 mask) in xf_atomic_clear() argument 137 v = *bitmap, *bitmap = (v &= ~mask); in xf_atomic_clear()
|
/device/linaro/bootloader/edk2/MdeModulePkg/Logo/ |
D | LogoDxe.uni | 2 // The default logo bitmap picture shown on setup screen. 4 // This module provides the default logo bitmap picture shown on setup screen, through EDKII Platfo… 18 #string STR_MODULE_ABSTRACT #language en-US "Provides the default logo bitmap picture s… 20 …CRIPTION #language en-US "This module provides the default logo bitmap picture shown on s…
|
D | Logo.uni | 2 // The default logo bitmap picture shown on setup screen, which is corresponding to gEfiDefaultBmpL… 4 // This module provides the default logo bitmap picture shown on setup screen, which corresponds to… 18 #string STR_MODULE_ABSTRACT #language en-US "Provides the default logo bitmap picture s… 20 …CRIPTION #language en-US "This module provides the default logo bitmap picture shown on s…
|
D | Logo.inf | 2 # The default logo bitmap picture shown on setup screen, which is corresponding to gEfiDefaultBmpL…
|
D | LogoDxe.inf | 2 # The default logo bitmap picture shown on setup screen.
|
/device/linaro/bootloader/edk2/StdLib/LibC/Wchar/ |
D | Searching.c | 55 #define BITMAP64 ((UINT64 *)bitmap) 59 BuildBitmap(unsigned char * bitmap, const wchar_t *s2, UINTN n) in BuildBitmap() argument 67 (void)wmemset( (wchar_t *)bitmap, 0, n / sizeof(wchar_t)); in BuildBitmap() 68 bitmap[0] = 1; in BuildBitmap() 74 bitmap[index] |= bit; in BuildBitmap()
|
/device/linaro/bootloader/arm-trusted-firmware/drivers/arm/ccn/ |
D | ccn_private.h | 187 static inline unsigned int count_set_bits(unsigned long long bitmap) in count_set_bits() argument 191 for (; bitmap; bitmap &= bitmap - 1) in count_set_bits()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/ |
D | bdist_wininst.py | 72 self.bitmap = None 185 self.create_exe(arcname, fullname, self.bitmap) 250 def create_exe (self, arcname, fullname, bitmap=None): argument 260 if bitmap: 261 bitmapdata = open(bitmap, "rb").read() 268 if bitmap:
|
D | bdist_msi.py | 502 "Retry", "Retry", "Retry", bitmap=False) 621 "OK", "OK", "OK", bitmap=False) 668 "Cancel", "Cancel", "Cancel", bitmap=False)
|
/device/linaro/bootloader/arm-trusted-firmware/drivers/arm/gic/v3/ |
D | gicv3_private.h | 146 unsigned int bitmap, in gicd_clr_ctlr() argument 149 gicd_write_ctlr(base, gicd_read_ctlr(base) & ~bitmap); in gicd_clr_ctlr() 155 unsigned int bitmap, in gicd_set_ctlr() argument 158 gicd_write_ctlr(base, gicd_read_ctlr(base) | bitmap); in gicd_set_ctlr()
|
D | gicv3_main.c | 158 unsigned int bitmap = 0; in gicv3_distif_init() local 186 bitmap = gicv3_secure_spis_configure_props( in gicv3_distif_init() 201 bitmap |= CTLR_ENABLE_G1S_BIT; in gicv3_distif_init() 210 bitmap |= CTLR_ENABLE_G0_BIT; in gicv3_distif_init() 216 gicd_set_ctlr(gicv3_driver_data->gicd_base, bitmap, RWP_TRUE); in gicv3_distif_init()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/msi/ |
D | msi.py | 297 self.bitmap("Bitmap", 0, 0, bmwidth, ruler, "PythonWin") 523 "Retry", "Retry", "Retry", bitmap=False) 682 "OK", "OK", "OK", bitmap=False) 755 "Cancel", "Cancel", "Cancel", bitmap=False)
|
D | msilib.py | 646 def bitmap(self, name, x, y, w, h, text): member in Dialog
|
/device/google/marlin/camera/QCamera2/HAL/test/ |
D | qcamera_test.h | 143 status_t encodeJPEG(SkWStream * stream, const SkBitmap *bitmap,
|
D | qcamera_test.cpp | 418 const SkBitmap *bitmap, String8 path) in encodeJPEG() argument 422 if (!SkEncodeImage(stream, *bitmap, SkEncodedImageFormat::kJPEG, qFactor) { in encodeJPEG() 502 __FUNCTION__, bitmap->getPixels(), len, path.string()); in encodeJPEG()
|
/device/google/marlin/ |
D | WCNSS_qcom_cfg.ini | 236 # ie bitmap examples: <bitmap_name>=<value> [<Allowed Information elements>]
|
/device/linaro/bootloader/edk2/SecurityPkg/ |
D | SecurityPkg.uni | 190 …curityPkgTokenSpaceGuid_PcdTcg2HashAlgorithmBitmap_PROMPT #language en-US "Hash Algorithm bitmap."
|
/device/google/muskie/ |
D | WCNSS_qcom_cfg.ini | 311 # ie bitmap examples: <bitmap_name>=<value> [<Allowed Information elements>]
|
/device/google/taimen/ |
D | WCNSS_qcom_cfg.ini | 311 # ie bitmap examples: <bitmap_name>=<value> [<Allowed Information elements>]
|
/device/google/bonito/ |
D | WCNSS_qcom_cfg.ini | 296 # ie bitmap examples: <bitmap_name>=<value> [<Allowed Information elements>]
|
/device/google/crosshatch/ |
D | WCNSS_qcom_cfg.ini | 296 # ie bitmap examples: <bitmap_name>=<value> [<Allowed Information elements>]
|
/device/google/crosshatch/sdm845/kernel-headers/linux/ |
D | videodev2.h | 604 void * bitmap; member
|
/device/google/bonito/sdm710/kernel-headers/linux/ |
D | videodev2.h | 604 void * bitmap; member
|
/device/google/crosshatch/sdm845/original-kernel-headers/linux/ |
D | videodev2.h | 1111 void *bitmap; member
|