Home
last modified time | relevance | path

Searched refs:ch4 (Results 1 – 13 of 13) sorted by relevance

/third_party/skia/third_party/externals/freetype/src/tools/ftrandom/
Dftrandom.c282 int ch4 = getc( foo ); in figurefiletype() local
287 if ( ( ch1 == 0 && ch2 == 1 && ch3 == 0 && ch4 == 0 ) || in figurefiletype()
288 ( ch1 == 'O' && ch2 == 'T' && ch3 == 'T' && ch4 == 'O' ) || in figurefiletype()
289 ( ch1 == 't' && ch2 == 'r' && ch3 == 'u' && ch4 == 'e' ) || in figurefiletype()
290 ( ch1 == 't' && ch2 == 't' && ch3 == 'c' && ch4 == 'f' ) ) in figurefiletype()
314 else if ( ch1 == 'S' && ch2 == 'T' && ch3 == 'A' && ch4 == 'R' ) in figurefiletype()
319 else if ( ch1 == 'P' && ch2 == 'F' && ch3 == 'R' && ch4 == '0' ) in figurefiletype()
324 else if ( ( ch1 == '\1' && ch2 == 'f' && ch3 == 'c' && ch4 == 'p' ) || in figurefiletype()
/third_party/flutter/skia/third_party/externals/freetype/src/tools/ftrandom/
Dftrandom.c282 int ch4 = getc( foo ); in figurefiletype() local
287 if ( ( ch1 == 0 && ch2 == 1 && ch3 == 0 && ch4 == 0 ) || in figurefiletype()
288 ( ch1 == 'O' && ch2 == 'T' && ch3 == 'T' && ch4 == 'O' ) || in figurefiletype()
289 ( ch1 == 't' && ch2 == 'r' && ch3 == 'u' && ch4 == 'e' ) || in figurefiletype()
290 ( ch1 == 't' && ch2 == 't' && ch3 == 'c' && ch4 == 'f' ) ) in figurefiletype()
314 else if ( ch1 == 'S' && ch2 == 'T' && ch3 == 'A' && ch4 == 'R' ) in figurefiletype()
319 else if ( ch1 == 'P' && ch2 == 'F' && ch3 == 'R' && ch4 == '0' ) in figurefiletype()
324 else if ( ( ch1 == '\1' && ch2 == 'f' && ch3 == 'c' && ch4 == 'p' ) || in figurefiletype()
/third_party/freetype/src/tools/ftrandom/
Dftrandom.c282 int ch4 = getc( foo ); in figurefiletype() local
287 if ( ( ch1 == 0 && ch2 == 1 && ch3 == 0 && ch4 == 0 ) || in figurefiletype()
288 ( ch1 == 'O' && ch2 == 'T' && ch3 == 'T' && ch4 == 'O' ) || in figurefiletype()
289 ( ch1 == 't' && ch2 == 'r' && ch3 == 'u' && ch4 == 'e' ) || in figurefiletype()
290 ( ch1 == 't' && ch2 == 't' && ch3 == 'c' && ch4 == 'f' ) ) in figurefiletype()
314 else if ( ch1 == 'S' && ch2 == 'T' && ch3 == 'A' && ch4 == 'R' ) in figurefiletype()
319 else if ( ch1 == 'P' && ch2 == 'F' && ch3 == 'R' && ch4 == '0' ) in figurefiletype()
324 else if ( ( ch1 == '\1' && ch2 == 'f' && ch3 == 'c' && ch4 == 'p' ) || in figurefiletype()
/third_party/python/Objects/stringlib/
Dcodecs.h179 Py_UCS4 ch2, ch3, ch4; in STRINGLIB() local
199 ch4 = (unsigned char)s[3]; in STRINGLIB()
218 if (!IS_CONTINUATION_BYTE(ch4)) { in STRINGLIB()
222 ch = (ch << 18) + (ch2 << 12) + (ch3 << 6) + ch4 - in STRINGLIB()
/third_party/boost/libs/multi_index/test/
Dtest_composite_key.cpp639 ckey_hash_t ch4(get<0>(ch1.key_hash_functions())); in DEFINE_TUPLE_MAKER() local
642 ch3=ch4; /* prevent unused var */ in DEFINE_TUPLE_MAKER()
643 ch4=ch2; /* prevent unused var */ in DEFINE_TUPLE_MAKER()
/third_party/typescript/src/compiler/
Dutilities.ts5349 const ch4 = base64Digits.indexOf(input[i + 3]); constant
5353 const code3 = ((ch3 & 0B00000011) << 6) | (ch4 & 0B00111111);
5358 … else if (code3 === 0 && ch4 !== 0) { // code3 decoded to zero, but ch4 was padding, elide code3
/third_party/typescript/lib/
Dtsc.js14206 var ch4 = base64Digits.indexOf(input[i + 3]);
14209 var code3 = ((ch3 & 3) << 6) | (ch4 & 63);
14213 else if (code3 === 0 && ch4 !== 0) {
DtypingsInstaller.js18126 var ch4 = base64Digits.indexOf(input[i + 3]);
18129 var code3 = ((ch3 & 3) << 6) | (ch4 & 63);
18133 … else if (code3 === 0 && ch4 !== 0) { // code3 decoded to zero, but ch4 was padding, elide code3
Dtsserverlibrary.js18331 var ch4 = base64Digits.indexOf(input[i + 3]);
18334 var code3 = ((ch3 & 3) << 6) | (ch4 & 63);
18338 … else if (code3 === 0 && ch4 !== 0) { // code3 decoded to zero, but ch4 was padding, elide code3
Dtypescript.js18331 var ch4 = base64Digits.indexOf(input[i + 3]);
18334 var code3 = ((ch3 & 3) << 6) | (ch4 & 63);
18338 … else if (code3 === 0 && ch4 !== 0) { // code3 decoded to zero, but ch4 was padding, elide code3
Dtsserver.js18137 var ch4 = base64Digits.indexOf(input[i + 3]);
18140 var code3 = ((ch3 & 3) << 6) | (ch4 & 63);
18144 … else if (code3 === 0 && ch4 !== 0) { // code3 decoded to zero, but ch4 was padding, elide code3
DtypescriptServices.js18331 var ch4 = base64Digits.indexOf(input[i + 3]);
18334 var code3 = ((ch3 & 3) << 6) | (ch4 & 63);
18338 … else if (code3 === 0 && ch4 !== 0) { // code3 decoded to zero, but ch4 was padding, elide code3
/third_party/chromium/patch/
D0003-3.2-Beta3-1115.patch192183 z5Doyn7zmad`{THNV74)<p~qY8XUmJNQ3JggrPou@ch4^5M9)1N<4~*4!PwDf`!Gt6