Home
last modified time | relevance | path

Searched refs:c1 (Results 1 – 25 of 66) sorted by relevance

123

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
Demu_jisx0213_2000.h27 #define EMULATE_JISX0213_2000_DECODE_PLANE1(assi, c1, c2) \ argument
29 (((c1) == 0x2E && (c2) == 0x21) || \
30 ((c1) == 0x2F && (c2) == 0x7E) || \
31 ((c1) == 0x4F && (c2) == 0x54) || \
32 ((c1) == 0x4F && (c2) == 0x7E) || \
33 ((c1) == 0x74 && (c2) == 0x27) || \
34 ((c1) == 0x7E && (c2) == 0x7A) || \
35 ((c1) == 0x7E && (c2) == 0x7B) || \
36 ((c1) == 0x7E && (c2) == 0x7C) || \
37 ((c1) == 0x7E && (c2) == 0x7D) || \
[all …]
D_codecs_jp.c25 unsigned char c1, c2; in ENCODER() local
60 c1 = code >> 8; in ENCODER()
62 c2 = (((c1 - 0x21) & 1) ? 0x5e : 0) + (c2 - 0x21); in ENCODER()
63 c1 = (c1 - 0x21) >> 1; in ENCODER()
64 OUT1(c1 < 0x1f ? c1 + 0x81 : c1 + 0xc1) in ENCODER()
69 c1 = (Py_UNICODE)(c - 0xe000) / 188; in ENCODER()
71 OUT1(c1 + 0xf0) in ENCODER()
438 unsigned char c1, c2; in ENCODER() local
474 c1 = code >> 8; in ENCODER()
476 c2 = (((c1 - 0x21) & 1) ? 0x5e : 0) + (c2 - 0x21); in ENCODER()
[all …]
D_codecs_kr.c276 unsigned char c1, c2, t2; in ENCODER() local
280 c1 = code >> 8; in ENCODER()
282 if (((c1 >= 0x21 && c1 <= 0x2c) || in ENCODER()
283 (c1 >= 0x4a && c1 <= 0x7d)) && in ENCODER()
285 t1 = (c1 < 0x4a ? (c1 - 0x21 + 0x1b2) : in ENCODER()
286 (c1 - 0x21 + 0x197)); in ENCODER()
Dcjkcodecs.h129 #define WRITE1(c1) \ argument
131 (*outbuf)[0] = (c1);
132 #define WRITE2(c1, c2) \ argument
134 (*outbuf)[0] = (c1); \
136 #define WRITE3(c1, c2, c3) \ argument
138 (*outbuf)[0] = (c1); \
141 #define WRITE4(c1, c2, c3, c4) \ argument
143 (*outbuf)[0] = (c1); \
174 #define TRYMAP_DEC(charset, assi, c1, c2) \ argument
175 if _TRYMAP_DEC(&charset##_decmap[c1], assi, c2)
[all …]
D_codecs_hk.c100 #define BH2S(c1, c2) (((c1) - 0x87) * (0xfe - 0x40 + 1) + ((c2) - 0x40)) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
Demu_jisx0213_2000.h27 #define EMULATE_JISX0213_2000_DECODE_PLANE1(assi, c1, c2) \ argument
29 (((c1) == 0x2E && (c2) == 0x21) || \
30 ((c1) == 0x2F && (c2) == 0x7E) || \
31 ((c1) == 0x4F && (c2) == 0x54) || \
32 ((c1) == 0x4F && (c2) == 0x7E) || \
33 ((c1) == 0x74 && (c2) == 0x27) || \
34 ((c1) == 0x7E && (c2) == 0x7A) || \
35 ((c1) == 0x7E && (c2) == 0x7B) || \
36 ((c1) == 0x7E && (c2) == 0x7C) || \
37 ((c1) == 0x7E && (c2) == 0x7D) || \
[all …]
D_codecs_jp.c25 unsigned char c1, c2; in ENCODER() local
60 c1 = code >> 8; in ENCODER()
62 c2 = (((c1 - 0x21) & 1) ? 0x5e : 0) + (c2 - 0x21); in ENCODER()
63 c1 = (c1 - 0x21) >> 1; in ENCODER()
64 OUT1(c1 < 0x1f ? c1 + 0x81 : c1 + 0xc1) in ENCODER()
69 c1 = (Py_UNICODE)(c - 0xe000) / 188; in ENCODER()
71 OUT1(c1 + 0xf0) in ENCODER()
438 unsigned char c1, c2; in ENCODER() local
474 c1 = code >> 8; in ENCODER()
476 c2 = (((c1 - 0x21) & 1) ? 0x5e : 0) + (c2 - 0x21); in ENCODER()
[all …]
D_codecs_kr.c276 unsigned char c1, c2, t2; in ENCODER() local
280 c1 = code >> 8; in ENCODER()
282 if (((c1 >= 0x21 && c1 <= 0x2c) || in ENCODER()
283 (c1 >= 0x4a && c1 <= 0x7d)) && in ENCODER()
285 t1 = (c1 < 0x4a ? (c1 - 0x21 + 0x1b2) : in ENCODER()
286 (c1 - 0x21 + 0x197)); in ENCODER()
Dcjkcodecs.h129 #define WRITE1(c1) \ argument
131 (*outbuf)[0] = (c1);
132 #define WRITE2(c1, c2) \ argument
134 (*outbuf)[0] = (c1); \
136 #define WRITE3(c1, c2, c3) \ argument
138 (*outbuf)[0] = (c1); \
141 #define WRITE4(c1, c2, c3, c4) \ argument
143 (*outbuf)[0] = (c1); \
174 #define TRYMAP_DEC(charset, assi, c1, c2) \ argument
175 if _TRYMAP_DEC(&charset##_decmap[c1], assi, c2)
[all …]
/device/linaro/bootloader/arm-trusted-firmware/include/lib/aarch32/
Darch.h386 #define SCR p15, 0, c1, c1, 0
387 #define SCTLR p15, 0, c1, c0, 0
388 #define SDCR p15, 0, c1, c3, 1
393 #define NSACR p15, 0, c1, c1, 2
394 #define CPACR p15, 0, c1, c0, 2
403 #define ID_PFR1 p15, 0, c0, c1, 1
414 #define BPIALLIS p15, 0, c7, c1, 6
415 #define HSCTLR p15, 4, c1, c0, 0
416 #define HCR p15, 4, c1, c1, 0
417 #define HCPTR p15, 4, c1, c1, 2
[all …]
/device/linaro/bootloader/edk2/ArmPkg/Library/ArmLib/Arm/
DArmV7Support.asm74 mrc p15,0,R0,c1,c0,0 ; Read SCTLR into R0 (Read control register configuration data)
76 mcr p15,0,R0,c1,c0,0 ; Write R0 into SCTLR (Write control register configuration data)
82 mrc p15,0,R0,c1,c0,0 ; Read SCTLR into R0 (Read control register configuration data)
84 mcr p15,0,R0,c1,c0,0 ; Write R0 into SCTLR (Write control register configuration data)
93 mrc p15, 0, r0, c1, c0, 0 ; Get control register
97 mcr p15, 0, r0, c1, c0, 0 ; Write control register
103 mrc p15,0,R0,c1,c0,0 ; Read SCTLR into R0 (Read control register configuration data)
109 mrc p15,0,R0,c1,c0,0 ; Read SCTLR into R0 (Read control register configuration data)
111 mcr p15,0,R0,c1,c0,0 ; Write R0 into SCTLR (Write control register configuration data)
118 mrc p15,0,R0,c1,c0,0 ; Read SCTLR into R0 (Read control register configuration data)
[all …]
DArmV7Support.S71 mrc p15,0,R0,c1,c0,0
73 mcr p15,0,R0,c1,c0,0
80 mrc p15,0,R0,c1,c0,0
82 mcr p15,0,R0,c1,c0,0 @Disable MMU
91 mrc p15, 0, r0, c1, c0, 0 @ Get control register
95 mcr p15, 0, r0, c1, c0, 0 @ Write control register
101 mrc p15,0,R0,c1,c0,0
107 mrc p15,0,R0,c1,c0,0 @Read control register configuration data
109 mcr p15,0,r0,c1,c0,0 @Write control register configuration data
116 mrc p15,0,R0,c1,c0,0 @Read control register configuration data
[all …]
DArmLibSupport.asm65 mrc p15, 0, r0, c1, c0, 2
69 mcr p15, 0, r0, c1, c0, 2
74 mcr p15, 0, r0, c1, c0, 1
78 mrc p15, 0, r0, c1, c0, 1
122 mrc p15, 0, r0, c1, c1, 0
126 mcr p15, 0, r0, c1, c1, 0
155 …mrc p15, 0, r0, c1, c0, 0 // Read SCTLR into R0 (Read control register configuration data)
160 mrc p15, 0, r0, c1, c0, 1
164 mcr p15, 0, r0, c1, c0, 1
DArmLibSupport.S63 mrc p15, 0, r0, c1, c0, 2
67 mcr p15, 0, r0, c1, c0, 2
72 mcr p15, 0, r0, c1, c0, 1
76 mrc p15, 0, r0, c1, c0, 1
120 mrc p15, 0, r0, c1, c1, 0
124 mcr p15, 0, r0, c1, c1, 0
153 mrc p15, 0, r0, c1, c0, 0 @ Read SCTLR into R0 (Read control register configuration data)
157 mrc p15, 0, r0, c1, c0, 1
161 mcr p15, 0, r0, c1, c0, 1
DArmLibSupportV7.asm92 mrc p15, 0, r0, c1, c1, 2
96 mcr p15, 0, r0, c1, c1, 2
DArmLibSupportV7.S88 mrc p15, 0, r0, c1, c1, 2
92 mcr p15, 0, r0, c1, c1, 2
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_normalization.py57 c1,c2,c3,c4,c5 = [unistr(x) for x in line.split(';')[:-1]]
63 c1 = unistr(line.split(';')[0])
67 part1_data[c1] = 1
71 self.assertTrue(c2 == NFC(c1) == NFC(c2) == NFC(c3), line)
73 self.assertTrue(c3 == NFD(c1) == NFD(c2) == NFD(c3), line)
75 self.assertTrue(c4 == NFKC(c1) == NFKC(c2) == \
78 self.assertTrue(c5 == NFKD(c1) == NFKD(c2) == \
84 part1_data[c1] = 1
Dtest_abstract_numbers.py41 c1, c2 = complex(3, 2), complex(4,1)
43 self.assertRaises(AttributeError, math.trunc, c1)
44 self.assertRaises(TypeError, float, c1)
45 self.assertRaises(TypeError, int, c1)
Dtest_weakref.py415 c1 = C()
416 c1.i = C()
417 wr = weakref.ref(c1.i, lambda ignore: gc.collect())
420 c2.c1 = c1
421 del c1 # still alive because c2 points to it
513 self.c1
516 c1, c2 = C(), C()
519 c2.c1 = c1
520 c2.wr = weakref.ref(c1, c2.cb)
522 del c1, c2
[all …]
Dtest_decorators.py245 c1, c2, c3 = map(NameLookupTracer, [ 1, 2, 3 ])
253 @c1.make_decorator(c1.arg)
265 bar = c1.make_decorator(c1.arg)(c2.make_decorator(c2.arg)(c3.make_decorator(c3.arg)(bar)))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/
Dcomparecodecs.py20 c1 = u.encode(encoding1)
22 c1 = '<undefined>'
27 if c1 != c2:
29 (i, c1, c2)
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/enc/
Dutf16_le.c88 UChar c1 = *(p+1); in utf16le_mbc_to_code() local
90 if (UTF16_IS_SURROGATE_FIRST(c1)) { in utf16le_mbc_to_code()
91 code = ((((c1 - 0xd8) << 2) + ((c0 & 0xc0) >> 6) + 1) << 16) in utf16le_mbc_to_code()
96 code = c1 * 256 + p[0]; in utf16le_mbc_to_code()
/device/google/marlin/dataservices/datatop/src/
Ddatatop_sys_snap.c72 static int dtop_run_and_log(char *file, const char *c1, const char **args) in dtop_run_and_log() argument
95 execvp(c1, (char * const *)args); in dtop_run_and_log()
96 printf("Failed to execute %s\n", c1); in dtop_run_and_log()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dbase64.py152 c1, c2, c3 = struct.unpack('!HHB', s[i*5:(i+1)*5])
153 c2 += (c1 & 1) << 16 # 17 bits wide
155 parts.extend([_b32tab[c1 >> 11], # bits 1 - 5
156 _b32tab[(c1 >> 6) & 0x1f], # bits 6 - 10
157 _b32tab[(c1 >> 1) & 0x1f], # bits 11 - 15
/device/google/contexthub/util/nanoapp_sign/
Dtest_exponent8 f2:6b:71:64:54:18:a3:d2:0a:42:c1:98:f2:36:eb:
14 26:cd:13:7e:c1:b9:94:19:37:13:4e:91:90:90:2e:

123