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

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/brotli/dist/c/enc/
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[2] & 0xC0) == 0x80)
    [all...]
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/dist/src/util/
roundeven_test.c 35 float input, expected; member in struct:__anon2883
52 double input, expected; member in struct:__anon2884
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.old/dist/src/util/
roundeven_test.c 35 float input, expected; member in struct:__anon5041
52 double input, expected; member in struct:__anon5042
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.old/dist/hw/dmx/config/
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/
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.num_elements = num_elements
    [all...]
  /xsrc/external/mit/xf86-input-vmmouse/dist/tools/
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/MesaLib/dist/src/gallium/tools/
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.old/dist/src/gallium/tools/
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/twm/dist/
ylwrap 75 Usage: ylwrap [--help|--version] INPUT [OUTPUT DESIRED]... -- PROGRAM [ARGS]...
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
    [all...]
  /xsrc/external/mit/xgc/dist/
ylwrap 75 Usage: ylwrap [--help|--version] INPUT [OUTPUT DESIRED]... -- PROGRAM [ARGS]...
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
    [all...]
  /xsrc/external/mit/libXdmcp/dist/
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);
Wrap.h 13 extern void _XdmcpAuthDoIt (auth_cblock input, auth_cblock output,
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/
lp_bld_format_soa.c 128 LLVMValueRef input = packed; local
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 = lp_build_unsigned_norm_to_float(gallivm, width, type, input)
374 LLVMValueRef input; local
    [all...]
  /xsrc/external/mit/freetype/dist/include/freetype/
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/twm/dist/src/
lex.l 150 #undef input
154 #define input() (*twmInputFunc)()
  /xsrc/external/mit/xf86-input-synaptics/dist/src/
eventcomm.h 30 #include <linux/input.h>
36 #define DEV_INPUT_EVENT "/dev/input"
  /xsrc/external/mit/xorg-server.old/dist/
ylwrap 46 Usage: ylwrap [--help|--version] INPUT [OUTPUT DESIRED]... -- PROGRAM [ARGS]...
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" ;;
    [all...]
  /xsrc/external/mit/bdftopcf/dist/
bdftopcf.c 48 FontFilePtr input, output; local
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/dist/src/gallium/auxiliary/draw/
draw_vs_exec.c 93 const float (*input)[4],
126 debug_printf("%d) Input vert:\n", i + j);
129 input[slot][0],
130 input[slot][1],
131 input[slot][2],
132 input[slot][3]);
155 assert(!util_is_inf_or_nan(input[slot][0]));
156 assert(!util_is_inf_or_nan(input[slot][1]));
157 assert(!util_is_inf_or_nan(input[slot][2]));
158 assert(!util_is_inf_or_nan(input[slot][3]))
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/tnl/
t_vb_fog.c 149 GLvector4f *input; local
170 input = &store->fogcoord;
180 ( (GLfloat *) input->data,
184 input->count = VB->AttribPtr[_TNL_ATTRIB_POS]->count;
188 coord = input->start;
189 for (i = 0; i < input->count; i++) {
191 STRIDE_F(coord, input->stride);
196 input = &store->fogcoord;
201 input->stride = 4 * sizeof(GLfloat);
202 input->count = VB->EyePtr->count
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/draw/
draw_vs_exec.c 90 const float (*input)[4],
123 debug_printf("%d) Input vert:\n", i + j);
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]))
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/tnl/
t_vb_fog.c 149 GLvector4f *input; local
170 input = &store->fogcoord;
180 ( (GLfloat *) input->data,
184 input->count = VB->AttribPtr[_TNL_ATTRIB_POS]->count;
188 coord = input->start;
189 for (i = 0; i < input->count; i++) {
191 STRIDE_F(coord, input->stride);
196 input = &store->fogcoord;
201 input->stride = 4 * sizeof(GLfloat);
202 input->count = VB->EyePtr->count
    [all...]
  /xsrc/external/mit/xkbcomp/dist/
ylwrap 71 Usage: ylwrap [--help|--version] INPUT [OUTPUT DESIRED]... -- PROGRAM [ARGS]...
75 INPUT is the input file
96 # The input.
97 input=$1
100 input_sub_rx=`get_dirname "$input" | quote_for_sed`
101 case $input in
107 input=`pwd`/$input
110 input_rx=`get_dirname "$input" | quote_for_sed
    [all...]
  /xsrc/external/mit/xkbevd/dist/
ylwrap 71 Usage: ylwrap [--help|--version] INPUT [OUTPUT DESIRED]... -- PROGRAM [ARGS]...
75 INPUT is the input file
96 # The input.
97 input=$1
100 input_sub_rx=`get_dirname "$input" | quote_for_sed`
101 case $input in
107 input=`pwd`/$input
110 input_rx=`get_dirname "$input" | quote_for_sed
    [all...]

Completed in 11 milliseconds

1 2 3 4 5 6 7 8 91011>>