| /xsrc/external/mit/brotli/dist/c/enc/ |
| H A D | utf8_util.c | 18 int* symbol, const uint8_t* input, size_t size) { 20 if ((input[0] & 0x80) == 0) { 21 *symbol = input[0]; 28 (input[0] & 0xE0) == 0xC0 && 29 (input[1] & 0xC0) == 0x80) { 30 *symbol = (((input[0] & 0x1F) << 6) | 31 (input[1] & 0x3F)); 38 (input[0] & 0xF0) == 0xE0 && 39 (input[1] & 0xC0) == 0x80 && 40 (input[ 17 BrotliParseAsUTF8(int * symbol,const uint8_t * input,size_t size) argument [all...] |
| H A D | compress_fragment_two_pass.h | 7 /* Function for fast encoding of an input fragment, independently from the input 26 /* Compresses "input" string to the "*storage" buffer as one or more complete 40 const uint8_t* input,
|
| /xsrc/external/mit/MesaLib.old/dist/src/util/ |
| H A D | roundeven_test.c | 35 float input, expected; member in struct:main::__anonb306053c0108 52 double input, expected; member in struct:main::__anonb306053c0208 72 float output = _mesa_roundevenf(float_data[i].input); 79 float_data[i].input, 80 float_data[i].input, 89 float output = _mesa_roundevenf(-float_data[i].input); 97 -float_data[i].input, 98 -float_data[i].input, 106 double output = _mesa_roundeven(double_data[i].input); 113 double_data[i].input, [all...] |
| /xsrc/external/mit/MesaLib/dist/src/util/ |
| H A D | roundeven_test.c | 35 float input, expected; member in struct:main::__anon993ee96f0108 52 double input, expected; member in struct:main::__anon993ee96f0208 72 float output = _mesa_roundevenf(float_data[i].input); 79 float_data[i].input, 80 float_data[i].input, 89 float output = _mesa_roundevenf(-float_data[i].input); 97 -float_data[i].input, 98 -float_data[i].input, 106 double output = _mesa_roundeven(double_data[i].input); 113 double_data[i].input, [all...] |
| /xsrc/external/mit/xorg-server/dist/hw/xfree86/drivers/inputtest/ |
| H A D | Makefile.am | 35 inputtest_drv_ladir = @moduledir@/input 37 inputtest_drv_la_SOURCES = xf86-input-inputtest.c xf86-input-inputtest-protocol.h 39 sdk_HEADERS = xf86-input-inputtest-protocol.h
|
| /xsrc/external/mit/xorg-server.old/dist/hw/dmx/config/ |
| H A D | dmxconfig.h | 43 extern void dmxConfigStoreInput(const char *input); /* Core devices */ 44 extern void dmxConfigStoreXInput(const char *input); /* Non-core devices */
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/ |
| H A D | u_vertex_state_cache.c | 34 return _mesa_hash_data(&state->input, sizeof(state->input)); 42 return !memcmp(&sa->input, &sb->input, sizeof(sa->input)); 82 key.input.indexbuf = indexbuf; 83 key.input.vbuffer.stride = buffer->stride; 85 key.input.vbuffer.buffer_offset = buffer->buffer_offset; 86 key.input.vbuffer.buffer = buffer->buffer; 87 key.input [all...] |
| /xsrc/external/mit/xf86-input-vmmouse/dist/tools/ |
| H A D | hal-probe-vmmouse.in | 28 __HAL_BIN_PREFIX__/hal-set-property --direct --udi "$UDI" --key input.x11_driver --string "vmmouse" 29 __HAL_BIN_PREFIX__/hal-set-property --direct --udi "$UDI" --key input.tags --string "vmmouse"
|
| /xsrc/external/mit/xorg-docs/dist/general/input/ |
| H A D | Makefile.am | 8 shelfdir = $(docdir)/input
|
| /xsrc/external/mit/xf86-input-elographics/dist/ |
| H A D | README.md | 1 xf86-input-elographics - Elographics input driver for the Xorg X server 11 https://gitlab.freedesktop.org:xorg/driver/xf86-input-elographics.git
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/tools/ |
| H A D | addr2line.sh | 7 input="$1" 10 sed -nre 's|([^ ]*/[^ ]*)\(\+0x([^)]*).*|\1 \2|p' "$input"|sort|uniq|while read bin addr; do 24 done|sed -f - "$input"
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/tools/ |
| H A D | addr2line.sh | 7 input="$1" 10 sed -nre 's|([^ ]*/[^ ]*)\(\+0x([^)]*).*|\1 \2|p' "$input"|sort|uniq|while read bin addr; do 24 done|sed -f - "$input"
|
| /xsrc/external/mit/xgc/dist/ |
| H A D | ylwrap | 79 INPUT is the input file 98 # The input. 99 input=$1 102 input_sub_rx=`get_dirname "$input" | quote_for_sed` 103 case $input in 109 input=`pwd`/$input 112 input_rx=`get_dirname "$input" | quote_for_sed` 175 0) "$prog" "$input" ;; 176 *) "$prog" "$@" "$input" ;; [all...] |
| /xsrc/external/mit/twm/dist/ |
| H A D | ylwrap | 79 INPUT is the input file 98 # The input. 99 input=$1 102 input_sub_rx=`get_dirname "$input" | quote_for_sed` 103 case $input in 109 input=`pwd`/$input 112 input_rx=`get_dirname "$input" | quote_for_sed` 175 0) "$prog" "$input" ;; 176 *) "$prog" "$@" "$input" ;; [all...] |
| /xsrc/external/mit/libXdmcp/dist/ |
| H A D | Unwrap.c | 56 unsigned char *input, 74 return; /* bad input length */ 76 blocks[k][i] = input[j + i]; 77 _XdmcpAuthDoIt ((unsigned char *) (input + j), (unsigned char *) tmp, schedule, 0); 55 XdmcpUnwrap(unsigned char * input,unsigned char * wrapper,unsigned char * output,int bytes) argument
|
| H A D | Wrap.h | 13 extern void _XdmcpAuthDoIt (auth_cblock input, auth_cblock output,
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/ |
| H A D | lp_bld_format_soa.c | 128 LLVMValueRef input = packed; local in function:lp_build_extract_soa_chan 133 /* Decode the input vector component */ 137 input = bld->undef; 145 input = LLVMBuildLShr(builder, input, 154 input = LLVMBuildAnd(builder, input, 164 input = lp_build_srgb_to_linear(gallivm, conv_type, width, input); 168 input 374 LLVMValueRef input; local in function:lp_build_rgba8_to_fi32_soa [all...] |
| /xsrc/external/mit/xf86-input-keyboard/dist/ |
| H A D | README.md | 1 kbd - Keyboard input driver for non-Linux platforms for the Xorg X server 5 systems. Linux systems should instead use either xf86-input-libinput or 6 xf86-input-evdev. 15 https://gitlab.freedesktop.org/xorg/driver/xf86-input-keyboard
|
| /xsrc/external/mit/freetype/dist/include/freetype/ |
| H A D | ftgzip.h | 70 * @input: 101 * Decompress a zipped input buffer into an output buffer. This function 104 * @input: 108 * input :: 109 * The input buffer. 112 * The length of the input buffer. 140 const FT_Byte* input,
|
| /xsrc/external/mit/xf86-input-synaptics/dist/src/ |
| H A D | eventcomm.h | 30 #include <linux/input.h> 36 #define DEV_INPUT_EVENT "/dev/input"
|
| /xsrc/external/mit/twm/dist/src/ |
| H A D | lex.l | 150 #undef input 154 #define input() (*twmInputFunc)()
|
| /xsrc/external/mit/xorg-server.old/dist/ |
| H A D | ylwrap | 50 INPUT is the input file 69 # The input. 70 input="$1" 72 case "$input" in 78 input="`pwd`/$input" 110 0) $prog "$input" ;; 111 *) $prog "$@" "$input" ;; 127 # The directory holding the input. 128 input_dir=`echo "$input" | se [all...] |
| /xsrc/external/mit/xorg-docs/dist/general/ |
| H A D | Makefile.am | 2 SUBDIRS = fonts input graphics platforms
|
| /xsrc/external/mit/bdftopcf/dist/ |
| H A D | bdftopcf.c | 48 FontFilePtr input, output; local in function:main 158 input = FontFileOpen(input_name); 159 if (!input) { 166 input = FontFileOpenFd(STDIN_FILENO); 167 if (bdfReadFont(&font, input, bit, byte, glyph, scan) != Successful) { 168 fprintf(stderr, "%s: bdf input, %s, corrupt\n",
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/draw/ |
| H A D | draw_vs_exec.c | 90 const float (*input)[4], 126 input[slot][0], 127 input[slot][1], 128 input[slot][2], 129 input[slot][3]); 152 assert(!util_is_inf_or_nan(input[slot][0])); 153 assert(!util_is_inf_or_nan(input[slot][1])); 154 assert(!util_is_inf_or_nan(input[slot][2])); 155 assert(!util_is_inf_or_nan(input[slot][3])); 157 machine->Inputs[slot].xyzw[0].f[j] = input[slo 89 vs_exec_run_linear(struct draw_vertex_shader * shader,const float (* input)[4],float (* output)[4],const void * constants[PIPE_MAX_CONSTANT_BUFFERS],const unsigned const_size[PIPE_MAX_CONSTANT_BUFFERS],unsigned count,unsigned input_stride,unsigned output_stride,const unsigned * fetch_elts) argument [all...] |