HomeSort by: relevance | last modified time | path
    Searched refs:byte (Results 1 - 25 of 130) sorted by relevancy

1 2 3 4 5 6

  /xsrc/external/mit/bdftopcf/dist/
defaults.c 68 FontDefaultFormat(int *bit, int *byte, int *glyph, int *scan)
71 *byte = DEFAULT_BYTE_ORDER;
bdftopcf.c 51 int bit, byte, glyph, scan; local
53 FontDefaultFormat(&bit, &byte, &glyph, &scan);
103 byte = MSBFirst;
109 byte = LSBFirst;
167 if (bdfReadFont(&font, input, bit, byte, glyph, scan) != Successful) {
pcf.h 76 #define PCF_FORMAT(bit,byte,glyph,scan) (\
79 (((byte) == MSBFirst ? 1 : 0) << 2) | \
93 int bit, int byte, int glyph, int scan);
  /xsrc/external/mit/libX11/dist/src/xlibi18n/lcUniConv/
cjk_tab_to_h.c 35 int rows; /* number of possible values for the 1st byte */
36 int cols; /* number of possible values for the 2nd byte */
37 int (*row_byte) (int row); /* returns the 1st byte value for a given row */
38 int (*col_byte) (int col); /* returns the 2nd byte value for a given col */
39 int (*byte_row) (int byte); /* converts a 1st byte value to a row, else -1 */
40 int (*byte_col) (int byte); /* converts a 2nd byte value to a col, else -1 */
41 const char* check_row_expr; /* format string for 1st byte value checking */
42 const char* check_col_expr; /* format string for 2nd byte value checking *
    [all...]
  /xsrc/external/mit/libXfont/dist/src/fontfile/
defaults.c 68 FontDefaultFormat (int *bit, int *byte, int *glyph, int *scan)
71 *byte = DEFAULT_BYTE_ORDER;
  /xsrc/external/mit/libXfont2/dist/src/fontfile/
defaults.c 69 FontDefaultFormat (int *bit, int *byte, int *glyph, int *scan)
72 *byte = DEFAULT_BYTE_ORDER;
  /xsrc/external/mit/libXfont/dist/src/FreeType/
fttools.c 43 #define LOBYTE(s,byte) ((byte)==LSBFirst?*(char*)(s):*((char*)(s)+1))
44 #define HIBYTE(s,byte) ((byte)==LSBFirst?*((char*)(s)+1):*(char*)(s))
55 /* Convert slen bytes from UCS-2 to ISO 8859-1. Byte specifies the
59 FTu2a(int slen, FT_Byte *from, char *to, int byte, int max)
67 if(HIBYTE(from+i, byte)!=0)
70 *to++ = LOBYTE(from+i,byte);
  /xsrc/external/mit/libXfont2/dist/src/FreeType/
fttools.c 44 #define LOBYTE(s,byte) ((byte)==LSBFirst?*(char*)(s):*((char*)(s)+1))
45 #define HIBYTE(s,byte) ((byte)==LSBFirst?*((char*)(s)+1):*(char*)(s))
56 /* Convert slen bytes from UCS-2 to ISO 8859-1. Byte specifies the
60 FTu2a(int slen, FT_Byte *from, char *to, int byte, int max)
68 if(HIBYTE(from+i, byte)!=0)
71 *to++ = LOBYTE(from+i,byte);
  /xsrc/external/mit/xf86-video-savage/dist/src/
savage_accel.c 226 /* Only the low-order byte is acknowledged, resulting in an incorrect */
336 unsigned char byte; local
385 byte = INREG8(CRT_DATA_REG) | 0x80;
386 OUTREG8(CRT_DATA_REG,byte);
396 byte = INREG8(CRT_DATA_REG) | 0xC1;
397 OUTREG8(CRT_DATA_REG, byte);
474 byte = INREG8(CRT_DATA_REG) | DISABLE_BLOCK_WRITE_2D;
475 OUTREG8(CRT_DATA_REG,byte);
483 byte = INREG8(CRT_DATA_REG) & (~(ENABLE_CPUA_BASE_A0000));
484 OUTREG8(CRT_DATA_REG,byte); /* perhaps this should be 0x0c *
504 unsigned char byte; local
656 unsigned char byte; local
914 unsigned char byte; local
1127 unsigned char byte; local
    [all...]
  /xsrc/external/mit/libX11/dist/src/
WrBitF.c 98 int size, byte; local
137 for (byte=0, ptr=data; byte<size; byte++, ptr++) {
138 if (!byte)
140 else if (!(byte % BYTES_PER_OUTPUT_LINE))
  /xsrc/external/mit/MesaLib/dist/src/mesa/x86-64/
xform4.S 70 .byte 0x66, 0x66, 0x66, 0x90 /* manual align += 3 */
84 .byte 0x66, 0x66, 0x90 /* manual align += 3 */
114 .byte 0xf3
121 .byte 0xff, 0xff, 0xff, 0xff
122 .byte 0xff, 0xff, 0xff, 0xff
123 .byte 0xff, 0xff, 0xff, 0xff
124 .byte 0x00, 0x00, 0x00, 0x00
126 .byte 0x00, 0x00, 0x00, 0x00
127 .byte 0x00, 0x00, 0x00, 0x00
128 .byte 0x00, 0x00, 0x00, 0x0
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/x86-64/
xform4.S 62 .byte 0x66, 0x66, 0x66, 0x90 /* manual align += 3 */
76 .byte 0x66, 0x66, 0x90 /* manual align += 3 */
106 .byte 0xf3
113 .byte 0xff, 0xff, 0xff, 0xff
114 .byte 0xff, 0xff, 0xff, 0xff
115 .byte 0xff, 0xff, 0xff, 0xff
116 .byte 0x00, 0x00, 0x00, 0x00
118 .byte 0x00, 0x00, 0x00, 0x00
119 .byte 0x00, 0x00, 0x00, 0x00
120 .byte 0x00, 0x00, 0x00, 0x0
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/util/
xxd.py 69 byte = infile.read(1)
70 if byte == b"":
74 assert(ord(byte) != 0)
76 emit_byte(outfile, byte)
  /xsrc/external/mit/libXfont/dist/src/builtins/
render.c 41 byte, local
55 FontDefaultFormat(&bit, &byte, &glyph, &scan);
57 ret = CheckFSFormat(format, fmask, &bit, &byte, &scan, &glyph, &image);
64 ret = pcfReadFont (pFont, file, bit, byte, glyph, scan);
  /xsrc/external/mit/libXfont2/dist/src/builtins/
render.c 42 byte, local
56 FontDefaultFormat(&bit, &byte, &glyph, &scan);
58 ret = CheckFSFormat(format, fmask, &bit, &byte, &scan, &glyph, &image);
65 ret = pcfReadFont (pFont, file, bit, byte, glyph, scan);
  /xsrc/external/mit/libXfont/dist/include/X11/fonts/
pcf.h 75 #define PCF_FORMAT(bit,byte,glyph,scan) (\
78 (((byte) == MSBFirst ? 1 : 0) << 2) | \
92 int bit, int byte, int glyph, int scan );
  /xsrc/external/mit/libXfont2/dist/include/X11/fonts/
pcf.h 75 #define PCF_FORMAT(bit,byte,glyph,scan) (\
78 (((byte) == MSBFirst ? 1 : 0) << 2) | \
92 int bit, int byte, int glyph, int scan );
  /xsrc/external/mit/fstobdf/dist/
chars.c 64 ((nBytes) == 1 ? (((bits) + 7) >> 3) /* pad to 1 byte */\
121 unsigned byte; local
129 byte = 0;
131 byte |= maskTab[bit & 7] & data[bit >> 3];
133 fprintf(outFile, "%02x", byte);
134 byte = 0;
138 fprintf(outFile, "%02x", byte);
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
xxd.py 89 byte = infile.read(1)
90 if byte == b"":
93 emit_byte(outfile, byte)
  /xsrc/external/mit/MesaLib/dist/src/intel/common/tests/
genxml_test.c 59 test1.byte[i] = i * 10 + 5;
88 } else if (sscanf(iter.name, "byte[%d]", &idx) == 1) {
90 assert(number == test1.byte[idx]);
101 test.byte[i][j] = (i * 10 + j) % 256;
124 assert(sscanf(iter.name, "byte[%d][%d]", &i, &j) == 2);
126 assert(number == test.byte[i][j]);
  /xsrc/external/mit/MesaLib/dist/src/mesa/sparc/
sparc_clip.S 30 .byte 0, 1, 0, 2, 4, 5, 4, 6
31 .byte 0, 1, 0, 2, 8, 9, 8, 10
32 .byte 32, 33, 32, 34, 36, 37, 36, 38
33 .byte 32, 33, 32, 34, 40, 41, 40, 42
34 .byte 0, 1, 0, 2, 4, 5, 4, 6
35 .byte 0, 1, 0, 2, 8, 9, 8, 10
36 .byte 16, 17, 16, 18, 20, 21, 20, 22
37 .byte 16, 17, 16, 18, 24, 25, 24, 26
38 .byte 63, 61, 63, 62, 55, 53, 55, 54
39 .byte 63, 61, 63, 62, 59, 57, 59, 5
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/sparc/
sparc_clip.S 43 .byte 0, 1, 0, 2, 4, 5, 4, 6
44 .byte 0, 1, 0, 2, 8, 9, 8, 10
45 .byte 32, 33, 32, 34, 36, 37, 36, 38
46 .byte 32, 33, 32, 34, 40, 41, 40, 42
47 .byte 0, 1, 0, 2, 4, 5, 4, 6
48 .byte 0, 1, 0, 2, 8, 9, 8, 10
49 .byte 16, 17, 16, 18, 20, 21, 20, 22
50 .byte 16, 17, 16, 18, 24, 25, 24, 26
51 .byte 63, 61, 63, 62, 55, 53, 55, 54
52 .byte 63, 61, 63, 62, 59, 57, 59, 5
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a6xx/
fd6_vsc.c 38 byte = 8, enumerator in enum:__anon1203
39 dword = 4 * byte,
  /xsrc/external/mit/MesaLib/dist/src/panfrost/bifrost/valhall/test/
test-disassembler.c 34 /* Given a little endian 8 byte hexdump, parse out the 64-bit value */
41 uint8_t byte = (parse_nibble(in[0]) << 4) | parse_nibble(in[1]); local
42 v |= ((uint64_t) byte) << (8 * i);
44 /* Skip the space after the byte */
  /xsrc/external/mit/MesaLib.old/dist/src/broadcom/cle/
v3d_packet_helpers.h 165 for (int byte = start / 8; byte <= end / 8; byte++) {
166 val |= cl[byte] << ((byte - start / 8) * 8);

Completed in 24 milliseconds

1 2 3 4 5 6