HomeSort by relevance Sort by last modified time
    Searched refs:ch3 (Results 1 - 25 of 45) sorted by null

1 2

  /hardware/intel/img/psb_video/src/
psb_surface_ext.h 39 #define MAKEFOURCC(ch0, ch1, ch2, ch3) \
41 ((unsigned long)(unsigned char) (ch2) << 16) | ((unsigned long)(unsigned char) (ch3) << 24 ))
  /external/freetype/src/tools/ftrandom/
ftrandom.c 281 int ch3 = getc( foo ); local
287 if ( ( ch1 == 0 && ch2 == 1 && ch3 == 0 && ch4 == 0 ) ||
288 ( ch1 == 'O' && ch2 == 'T' && ch3 == 'T' && ch4 == 'O' ) ||
289 ( ch1 == 't' && ch2 == 'r' && ch3 == 'u' && ch4 == 'e' ) ||
290 ( ch1 == 't' && ch2 == 't' && ch3 == 'c' && ch4 == 'f' ) )
309 else if ( ch1 == 1 && ch2 == 0 && ch3 == 4 )
314 else if ( ch1 == 'S' && ch2 == 'T' && ch3 == 'A' && ch4 == 'R' )
319 else if ( ch1 == 'P' && ch2 == 'F' && ch3 == 'R' && ch4 == '0' )
324 else if ( ( ch1 == '\1' && ch2 == 'f' && ch3 == 'c' && ch4 == 'p' ) ||
  /external/python/cpython3/Objects/stringlib/
codecs.h 128 Py_UCS4 ch2, ch3; local
142 ch3 = (unsigned char)s[2];
160 if (!IS_CONTINUATION_BYTE(ch3)) {
164 ch = (ch << 12) + (ch2 << 6) + ch3 -
178 Py_UCS4 ch2, ch3, ch4; local
191 ch3 = (unsigned char)s[2];
192 if (!IS_CONTINUATION_BYTE(ch3))
197 ch3 = (unsigned char)s[2];
213 if (!IS_CONTINUATION_BYTE(ch3)) {
221 ch = (ch << 18) + (ch2 << 12) + (ch3 << 6) + ch4
787 Py_UCS4 ch1, ch2, ch3, ch4; local
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
IsoTypeReader.java 27 long ch3 = readUInt8(bb); local
29 return ((ch4 << 24) + (ch3 << 16) + (ch2 << 8) + (ch1 << 0));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
avifmt.h 19 #define mmioFOURCC(ch0, ch1, ch2, ch3) ((DWORD)(BYTE)(ch0) | ((DWORD)(BYTE)(ch1) << 8) | ((DWORD)(BYTE)(ch2) << 16) | ((DWORD)(BYTE)(ch3) << 24))
dmdls.h 40 #define mmioFOURCC(ch0,ch1,ch2,ch3) \
42 ((DWORD)(BYTE)(ch2) << 16) | ((DWORD)(BYTE)(ch3) << 24 ))
d3d8types.h 155 #define MAKEFOURCC(ch0, ch1, ch2, ch3) \
157 ((DWORD)(BYTE)(ch2) << 16) | ((DWORD)(BYTE)(ch3) << 24 ))
    [all...]
d3d9types.h 207 #define MAKEFOURCC(ch0, ch1, ch2, ch3) \
209 ((DWORD)(BYTE)(ch2) << 16) | ((DWORD)(BYTE)(ch3) << 24 ))
    [all...]
vfw.h 36 #define MKFOURCC(ch0,ch1,ch2,ch3) ((DWORD)(BYTE)(ch0) | ((DWORD)(BYTE)(ch1) << 8) | ((DWORD)(BYTE)(ch2) << 16) | ((DWORD)(BYTE)(ch3) << 24))
52 #define mmioFOURCC(ch0,ch1,ch2,ch3) ((DWORD)(BYTE)(ch0) | ((DWORD)(BYTE)(ch1) << 8) | ((DWORD)(BYTE)(ch2) << 16) | ((DWORD)(BYTE)(ch3) << 24))
635 #define mmioFOURCC(ch0,ch1,ch2,ch3) ((DWORD)(BYTE)(ch0) | ((DWORD)(BYTE)(ch1) << 8) | ((DWORD)(BYTE)(ch2) << 16) | ((DWORD)(BYTE)(ch3) << 24))
765 #define mmioFOURCC(ch0,ch1,ch2,ch3) ((DWORD)(BYTE)(ch0) | ((DWORD)(BYTE)(ch1) << 8) | ((DWORD)(BYTE)(ch2) << 16) | ((DWORD)(BYTE)(ch3) << 24))
    [all...]
icm.h 67 WORD ch3; member in struct:GENERIC3CHANNEL
mmsystem.h 68 #define MAKEFOURCC(ch0,ch1,ch2,ch3) \
70 ((DWORD)(BYTE)(ch2) << 16) | ((DWORD)(BYTE)(ch3) << 24))
    [all...]
  /hardware/intel/common/wrs_omxil_core/core/src/
intel_video_config_parser.cpp 44 #define MAKEFOURCC_WMC(ch0, ch1, ch2, ch3) \
46 ((uint32)(uint8)(ch2) << 16) | ((uint32)(uint8)(ch3) << 24 ))
48 #define mmioFOURCC_WMC(ch0, ch1, ch2, ch3) MAKEFOURCC_WMC(ch0, ch1, ch2, ch3)
  /libcore/ojluni/src/main/java/java/io/
RandomAccessFile.java 886 int ch3 = this.read(); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
tokenizer.c 314 int ch1, ch2, ch3; local
326 ch3 = get_char(tok);
327 if (ch3 != 0xBF) {
328 unget_char(ch3, tok);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
tokenizer.c 328 int ch1, ch2, ch3; local
340 ch3 = get_char(tok);
341 if (ch3 != 0xBF) {
342 unget_char(ch3, tok);
    [all...]
  /external/python/cpython2/Parser/
tokenizer.c 332 int ch1, ch2, ch3; local
344 ch3 = get_char(tok);
345 if (ch3 != 0xBF) {
346 unget_char(ch3, tok);
    [all...]
  /external/python/cpython3/Parser/
tokenizer.c 355 int ch1, ch2, ch3; local
367 ch3 = get_char(tok);
368 if (ch3 != 0xBF) {
369 unget_char(ch3, tok);
    [all...]
  /external/swiftshader/include/Direct3D/
d3d8types.h     [all...]
  /frameworks/base/media/java/android/media/
ExifInterface.java 3883 int ch3 = mDataInputStream.read(); local
3937 int ch3 = mDataInputStream.read(); local
    [all...]
  /frameworks/support/exifinterface/src/main/java/androidx/exifinterface/media/
ExifInterface.java     [all...]
  /hardware/intel/common/libva/va/
va.h     [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/haha/haha/1.3/
haha-1.3.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.ds_1.4.100.v20130515-2026.jar 
  /external/libphonenumber/demo/war/WEB-INF/lib/
commons-lang-2.6.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
commons-lang-2.6.jar 

Completed in 993 milliseconds

1 2