Searched refs:c3 (Results 1 - 22 of 22) sorted by last modified time

/device/linaro/bootloader/edk2/StdLib/
H A DStdLib.dsc26 PLATFORM_GUID = 6135e67b-d813-4e4a-93c3-945d6af41858
/device/linaro/bootloader/edk2/StdLibPrivateInternalFiles/
H A DDoNotUse.dec18 PACKAGE_GUID = 25e23884-dc26-42c3-bd27-40e99f7d866b
/device/linaro/bootloader/edk2/FatBinPkg/EnhancedFatDxe/
H A DFat.inf24 FILE_GUID = 961578FE-B6B7-44c3-AF35-6BC705CD2B1F
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeSecurityManagementLib/
H A DDxeSecurityManagementLib.inf22 FILE_GUID = 7F61122C-19DF-47c3-BA0D-6C1149E30FA1
/device/linaro/bootloader/edk2/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/
H A DSecureBootConfigDxe.inf19 FILE_GUID = F0E6A44F-7195-41c3-AC64-54F202CD0A21
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
H A D_codecs_cn.c263 unsigned char c3, c4; local
267 c3 = IN3;
269 if (c < 0x81 || c3 < 0x81 || c4 < 0x30 || c4 > 0x39)
272 c3 -= 0x81; c4 -= 0x30;
276 (ucs4_t)c3 * 10 + c4;
288 * 1260 + (ucs4_t)c3 * 10 + c4;
H A D_codecs_jp.c262 unsigned char c2, c3; local
266 c3 = IN3 ^ 0x80;
269 EMULATE_JISX0213_2000_DECODE_PLANE2(**outbuf, c2, c3)
270 else TRYMAP_DEC(jisx0213_2_bmp, **outbuf, c2, c3) ;
271 else TRYMAP_DEC(jisx0213_2_emp, code, c2, c3) {
276 else TRYMAP_DEC(jisx0212, **outbuf, c2, c3) ;
394 unsigned char c2, c3; local
398 c3 = IN3;
400 TRYMAP_DEC(jisx0212, **outbuf, c2 ^ 0x80, c3 ^ 0x80) {
H A Dcjkcodecs.h136 #define WRITE3(c1, c2, c3) \
140 (*outbuf)[2] = (c3);
141 #define WRITE4(c1, c2, c3, c4) \
145 (*outbuf)[2] = (c3); \
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
H A Dtokenizer.c1144 PyToken_ThreeChars(int c1, int c2, int c3) argument
1150 switch (c3) {
1160 switch (c3) {
1170 switch (c3) {
1180 switch (c3) {
1638 int c3 = tok_nextc(tok); local
1639 int token3 = PyToken_ThreeChars(c, c2, c3);
1643 tok_backup(tok, c3);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dbase64.py149 # c1 and c2 are 16 bits wide, c3 is 8 bits wide. The intent of this
152 # bits of c2 and tack them onto c3. The shifts and masks are intended
154 c1, c2, c3 = struct.unpack('!HHB', s[i*5:(i+1)*5])
156 c3 += (c2 & 3) << 8 # 10 bits wide
163 _b32tab[c3 >> 5], # bits 31 - 35 (1 - 5)
164 _b32tab[c3 & 0x1f], # bits 36 - 40 (1 - 5)
H A Dcookielib.py1630 c3 = c2[cookie.path]
1631 c3[cookie.name] = cookie
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_decorators.py245 c1, c2, c3 = map(NameLookupTracer, [ 1, 2, 3 ])
255 @c3.make_decorator(c3.arg)
265 bar = c1.make_decorator(c1.arg)(c2.make_decorator(c2.arg)(c3.make_decorator(c3.arg)(bar)))
H A Dtest_descr.py2882 c3 = C(3) variable in class:.test_classic_comparisons.classic
2884 c = {1: c1, 2: c2, 3: c3}
2959 c3 = C(3) variable in class:.test_rich_comparisons.classic
2961 c = {1: c1, 2: c2, 3: c3}
H A Dtest_logging.py1868 c3 = l1.getChild('def.ghi')
1871 self.assertTrue(c2 is c3)
H A Dtest_minidom.py115 c3 = dom.createTextNode("bat")
120 frag.appendChild(c3)
121 return dom, orig, c1, c2, c3, frag
124 dom, orig, c1, c2, c3, frag = self._create_fragment_test_nodes()
127 (orig, c1, c2, c3),
132 dom, orig, c1, c2, c3, frag = self._create_fragment_test_nodes()
135 (c1, c2, c3, orig),
148 dom, orig, c1, c2, c3, frag = self._create_fragment_test_nodes()
151 (orig, c1, c2, c3),
157 dom, orig, c1, c2, c3, fra
[all...]
H A Dtest_normalization.py57 c1,c2,c3,c4,c5 = [unistr(x) for x in line.split(';')[:-1]]
71 self.assertTrue(c2 == NFC(c1) == NFC(c2) == NFC(c3), line)
73 self.assertTrue(c3 == NFD(c1) == NFD(c2) == NFD(c3), line)
76 NFKC(c3) == NFKC(c4) == NFKC(c5),
79 NFKD(c3) == NFKD(c4) == NFKD(c5),
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
H A D_codecs_cn.c263 unsigned char c3, c4; local
267 c3 = IN3;
269 if (c < 0x81 || c3 < 0x81 || c4 < 0x30 || c4 > 0x39)
272 c3 -= 0x81; c4 -= 0x30;
276 (ucs4_t)c3 * 10 + c4;
288 * 1260 + (ucs4_t)c3 * 10 + c4;
H A D_codecs_jp.c262 unsigned char c2, c3; local
266 c3 = IN3 ^ 0x80;
269 EMULATE_JISX0213_2000_DECODE_PLANE2(**outbuf, c2, c3)
270 else TRYMAP_DEC(jisx0213_2_bmp, **outbuf, c2, c3) ;
271 else TRYMAP_DEC(jisx0213_2_emp, code, c2, c3) {
276 else TRYMAP_DEC(jisx0212, **outbuf, c2, c3) ;
394 unsigned char c2, c3; local
398 c3 = IN3;
400 TRYMAP_DEC(jisx0212, **outbuf, c2 ^ 0x80, c3 ^ 0x80) {
H A Dcjkcodecs.h136 #define WRITE3(c1, c2, c3) \
140 (*outbuf)[2] = (c3);
141 #define WRITE4(c1, c2, c3, c4) \
145 (*outbuf)[2] = (c3); \
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
H A Dtokenizer.c1124 PyToken_ThreeChars(int c1, int c2, int c3) argument
1130 switch (c3) {
1140 switch (c3) {
1150 switch (c3) {
1160 switch (c3) {
1609 int c3 = tok_nextc(tok); local
1610 int token3 = PyToken_ThreeChars(c, c2, c3);
1614 tok_backup(tok, c3);
/device/linaro/bootloader/edk2/ArmPkg/Library/ArmLib/ArmV7/
H A DArmV7ArchTimerSupport.S76 mrc p15, 0, r0, c14, c3, 0 @ Read CNTV_TVAL (Virtual Timer Value register)
80 mcr p15, 0, r0, c14, c3, 0 @ Write to CNTV_TVAL (Virtual Timer Value register)
84 mrc p15, 0, r0, c14, c3, 1 @ Read CNTV_CTL (Virtual Timer Control Register)
88 mcr p15, 0, r0, c14, c3, 1 @ Write to CNTV_CTL (Virtual Timer Control Register)
/device/linaro/bootloader/edk2/ArmPkg/Library/ArmLib/Common/Arm/
H A DArmLibSupport.S72 mcr p15,0,r0,c3,c0,0

Completed in 315 milliseconds