Home
last modified time | relevance | path

Searched refs:input (Results 1 – 25 of 73) sorted by relevance

123

/utopia/UTPA2-700.0.x/modules/ipauth/drv/ipauth/
H A DdrvIPAUTH.c161 static void MDrv_AUTH_MD5Update (MD5_CTX *context, MS_U8 *input, MS_U16 inputLen);
250 void MDrv_AUTH_MD5Update (MD5_CTX *context, MS_U8 *input, MS_U16 inputLen) in MDrv_AUTH_MD5Update() argument
268 MDrv_AUTH_MD5_memcpy((POINTER)&context->buffer[index], (POINTER)input, partLen); in MDrv_AUTH_MD5Update()
272 MDrv_AUTH_MD5Transform (context->state, &input[i]); in MDrv_AUTH_MD5Update()
280 MDrv_AUTH_MD5_memcpy((POINTER)&context->buffer[index], (POINTER)&input[i], inputLen-i); in MDrv_AUTH_MD5Update()
427 static void MDrv_AUTH_Encode(MS_U8 *output, MS_U32 *input, MS_U16 len) in MDrv_AUTH_Encode() argument
433 output[j] = (MS_U8)(input[i] & 0xff); in MDrv_AUTH_Encode()
434 output[j+1] = (MS_U8)((input[i] >> 8) & 0xff); in MDrv_AUTH_Encode()
435 output[j+2] = (MS_U8)((input[i] >> 16) & 0xff); in MDrv_AUTH_Encode()
436 output[j+3] = (MS_U8)((input[i] >> 24) & 0xff); in MDrv_AUTH_Encode()
[all …]
/utopia/UTPA2-700.0.x/projects/build/scripts/dtc/
H A Ddtc-lexer.lex.c_shipped143 /* Size of default input buffer. */
175 /* Return all but the first "n" matched characters back to the input stream. */
202 char *yy_ch_buf; /* input buffer */
203 char *yy_buf_pos; /* current position in input buffer */
205 /* Size of input buffer in bytes, not including room for EOB
221 /* Whether this is an "interactive" input source; if so, and
222 * if we're using stdio for input, then we want to use getc()
223 * instead of fread(), to make sure we stop fetching input after
237 /* Whether to try to fill the input buffer when we reach the
248 * shouldn't try reading from the input source any more. We might
[all …]
/utopia/UTPA2-700.0.x/projects/build/scripts/kconfig/
H A Dlex.zconf.c_shipped161 /* Size of default input buffer. */
193 /* Return all but the first "n" matched characters back to the input stream. */
220 char *yy_ch_buf; /* input buffer */
221 char *yy_buf_pos; /* current position in input buffer */
223 /* Size of input buffer in bytes, not including room for EOB
239 /* Whether this is an "interactive" input source; if so, and
240 * if we're using stdio for input, then we want to use getc()
241 * instead of fread(), to make sure we stop fetching input after
255 /* Whether to try to fill the input buffer when we reach the
266 * shouldn't try reading from the input source any more. We might
[all …]
H A Dlex.zconf.c918 static int input (void );
1692 static int input (void) in yyinput()
1743 return input(); in yyinput()
/utopia/UTPA2-700.0.x/projects/build/scripts/genksyms/
H A Dlex.c_shipped185 /* Size of default input buffer. */
215 /* Return all but the first "n" matched characters back to the input stream. */
247 char *yy_ch_buf; /* input buffer */
248 char *yy_buf_pos; /* current position in input buffer */
250 /* Size of input buffer in bytes, not including room for EOB
266 /* Whether this is an "interactive" input source; if so, and
267 * if we're using stdio for input, then we want to use getc()
268 * instead of fread(), to make sure we stop fetching input after
282 /* Whether to try to fill the input buffer when we reach the
293 * shouldn't try reading from the input source any more. We might
[all …]
/utopia/UTPA2-700.0.x/modules/demodulator/drv/demod/
H A DdrvDMD_INTERN_DVBS.c269 MS_U32 ABS_32(MS_S32 input) in ABS_32() argument
273 if(input < 0) in ABS_32()
275 result = (-1)*input; in ABS_32()
278 result = input; in ABS_32()
283 MS_U64 ABS_64(MS_S64 input) in ABS_64() argument
287 if(input < 0) in ABS_64()
289 result = (-1)*input; in ABS_64()
292 result = input; in ABS_64()
297 MS_U8 Find_MSB(MS_S64 input) in Find_MSB() argument
300 MS_U64 data = ABS_64(input); in Find_MSB()
[all …]
/utopia/UTPA2-700.0.x/modules/xc/api/xc/
H A DapiXC_PCMonitor.c.0179 #define MD_TIMING_STABLE_COUNT 25 // input timing stable counter
263 Hal_SC_ip_sog_detect(pInstance); // toggle analog input and detect next time
290 Hal_SC_ip_sog_detect(pInstance); // toggle analog input and detect next time
415 // reset input timing stable and wait for timing stable
1414 // if enable input source before video mute, it would shows temp garbage
1415 // so need to mute video first before enable input source
1439 … MDrv_XC_DisableInputSource(pInstance, DISABLE, eWindow); //enable the input source
1455 … MDrv_XC_DisableInputSource(pInstance, DISABLE, eWindow); //enable the input source
1464 …ow] ==20) && MDrv_XC_IsInputSourceDisabled(pInstance, eWindow)) // to check the input source status
1498 //is input timing changed and check debounce
[all …]
/utopia/UTPA2-700.0.x/projects/build/scripts/
H A Dunifdef.c182 static FILE *input; /* input file pointer */ variable
319 input = fopen(filename, "rb"); in main()
320 if (input == NULL) in main()
324 input = stdin; in main()
332 fstat(fileno(input), &ist) == 0) in main()
649 if (fgets(tline, MAXLINE, input) == NULL) in parseline()
723 if (fgets(tline + len, MAXLINE - len, input) == NULL) { in parseline()
H A DMakefile.headersinst37 input-files := $(addprefix $(srctree)/$(obj)/,$(header-y)) \
80 $(install-file): scripts/headers_install.pl $(input-files) FORCE
H A Dget_maintainer.pl1508 my $input = <STDIN>;
1509 chomp($input);
1513 my @wish = split(/[, ]+/, $input);
H A Dgen_initramfs_list.sh29 as direct input to initramfs.
/utopia/UTPA2-700.0.x/projects/build/
H A DbspOneUtopia.dxyfile222 # to include (a tag file for) the STL sources as input, then you should
278 # For small to medium size projects (<1000 input files) the default value is
490 # popen()) the command <command> <input-file>, where <command> is the value of
491 # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file
558 # configuration options related to the input files
573 # also the default input encoding. Doxygen uses libiconv (or the iconv built
619 # should be searched for input files as well. Possible values are YES and NO.
632 # from the input.
666 # searched for input files to be used with the \include or \dontinclude
679 # invoke to filter for each input file. Doxygen will invoke the filter program
[all …]
H A Dbsp.dxyfile221 # to include (a tag file for) the STL sources as input, then you should
277 # For small to medium size projects (<1000 input files) the default value is
489 # popen()) the command <command> <input-file>, where <command> is the value of
490 # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file
557 # configuration options related to the input files
572 # also the default input encoding. Doxygen uses libiconv (or the iconv built
618 # should be searched for input files as well. Possible values are YES and NO.
631 # from the input.
665 # searched for input files to be used with the \include or \dontinclude
678 # invoke to filter for each input file. Doxygen will invoke the filter program
[all …]
/utopia/UTPA2-700.0.x/modules/xc/drv/xc/
H A Dmvideo.c.0685 //Pnl output is affected by input signal, so change to xc driver to report it as below
697 // For Einstein FRC 4K2K case, for non-4K2K input, need to sent 2Kx2K to FRC
1120 …TAL, CKG_IDCLK1_MASK); // initial to XTAL first, will be changed when switch input source
1139 … CKG_IDCLK2_MASK); // initial to XTAL first, will be changed when switch input source
1160 …_SC1_IDCLK2_MASK); // initial to XTAL first, will be changed when switch input source
1183 … CKG_IDCLK2_MASK); // initial to XTAL first, will be changed when switch input source
1217 … CKG_IDCLK2_MASK); // initial to XTAL first, will be changed when switch input source
1244 …G_S2_IDCLK2_MASK); // initial to XTAL first, will be changed when switch input source
1322 … //Mantis issue of 0266525 . Need to toggle IP write mask field count clear before input V sync .
1347 // this should only turned on when Top Bottom input with PreV scaling down enabled.
[all …]
H A Dmdrv_frc.c661 void MDrv_FRC_HSU_SetScalingSize(void *pInstance, MS_U16 input, MS_U16 output) in MDrv_FRC_HSU_SetScalingSize() argument
663 return MHal_FRC_HSU_SetScalingSize(pInstance, input, output); in MDrv_FRC_HSU_SetScalingSize()
666 void MDrv_FRC_VSU_SetScalingSize(void *pInstance, MS_U16 input, MS_U16 output) in MDrv_FRC_VSU_SetScalingSize() argument
668 return MHal_FRC_VSU_SetScalingSize(pInstance, input, output); in MDrv_FRC_VSU_SetScalingSize()
H A Dmdrv_sc_scaling.c.0870 //Sub window use disable IP memory request to disable input source
1189 …//XC_LOG_TRACE(XC_DBGLEVEL_SETWINDOW,"input source (Window:%d) must be disabled before set frame b…
1325 …//XC_LOG_TRACE(XC_DBGLEVEL_SETWINDOW,"input source (Window:%d) must be disabled before set frame b…
1425 …//XC_LOG_TRACE(XC_DBGLEVEL_SETWINDOW,"input source (Window:%d) must be disabled before set frame b…
2090 // HW_DESIGN_4K2K_VER == 7(Kano), 4K2K input must force FBL
2119 u16FrameCount = 6; //per cc, input 3d:framealternative will double data at dnr
2142 u16FrameCount = 6; //per cc, input 3d:framealternative will double data at dnr
2231 …//if input vfreq > panel can support vfreq, need go 3 or more frame mode, or else it will be teari…
2235 …XC_LOG_TRACE(XC_DBGLEVEL_SETWINDOW,"force to 3 or more frame mode for input vfreq > panel default …
3312 //for 4096 input case, force prescaling to display window width
[all …]
H A Dmdrv_sc_display.c.0192 // for high accurate input VFreq case, to avoid reconfig Vtt/Htt
613 //eg. input:30, original x2 out:60, but for 120hz panel, we should x4 out:120.
2153 …XC_LOG_TRACE(XC_DBGLEVEL_SETTIMING, "MDrv_SC_VFreq_Select(): wrong Vfreq_SEL input, use default lo…
2158 // This function will Get the exact ext_panel info structure for input vfreq
2807 // for high accurate input VFreq case, to avoid reconfig Vtt/Htt
2864 // for high accurate input VFreq case, to avoid reconfig Vtt/Htt
3417 //when calling MApi_XC_SetPanelTiming, input source is disabled
3746 …NG, "!!!!!Warning u32VFreq = 0, Force u16IPVsyncPeriod: %u ms, need check input source.\n", u16IPV…
3789 …NG, "!!!!!Warning u32VFreq = 0, Force u16IPVsyncPeriod: %u ms, need check input source.\n", u16IPV…
4759 //wait 2 input vsync for framelock phase error stable
[all …]
/utopia/UTPA2-700.0.x/modules/dmx/api/dmx/
H A DInternal_DMX_debug.c1163 DMX_FLOW_INPUT input; in _DMX_DBG_Misc() local
1165 …if(DMX_FILTER_STATUS_OK == MApi_DMX_Get_FlowInput_Status(DMX_FLOW_PLAYBACK, &input, &bInv, &bExt, … in _DMX_DBG_Misc()
1168 _stDmxInput[input].str, in _DMX_DBG_Misc()
1176 …if(DMX_FILTER_STATUS_OK == MApi_DMX_Get_FlowInput_Status(DMX_FLOW_PVR, &input, &bInv, &bExt, &bPar… in _DMX_DBG_Misc()
1179 _stDmxInput[input].str, in _DMX_DBG_Misc()
/utopia/UTPA2-700.0.x/mxlib/include/
H A DdrvIPAUTH.h161 DLL_LOCAL void MDrv_AUTH_AES_Encrypt( ST_AES_CONTEXT *ctx, MS_U8 input[16], MS_U8 output[16] );
162 DLL_LOCAL void MDrv_AUTH_AES_Decrypt( ST_AES_CONTEXT *ctx, MS_U8 input[16], MS_U8 output[16] );
/utopia/UTPA2-700.0.x/modules/xc/drv/xc/include/
H A Dmdrv_frc.h397 void MDrv_FRC_HSU_SetScalingSize(void *pInstance, MS_U16 input, MS_U16 output);
398 void MDrv_FRC_VSU_SetScalingSize(void *pInstance, MS_U16 input, MS_U16 output);
/utopia/UTPA2-700.0.x/modules/ojpd_vdec_v1/api/jpeg/cmodel/
H A DJPEG Cmodel.txt1 ./a.exe input.jpg output.tga 0 > RLE.txt (0:thunbnail ,1:main Picture)
/utopia/UTPA2-700.0.x/modules/ojpd_vdec_v2/api/jpeg_ex/cmodel/
H A DJPEG Cmodel.txt1 ./a.exe input.jpg output.tga 0 > RLE.txt (0:thunbnail ,1:main Picture)
/utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/linux/dvb/
H A Ddmx.h112 dmx_input_t input; member
/utopia/UTPA2-700.0.x/modules/audio/hal/manhattan/audio/
H A DhalAUDIO.c2614 void HAL_AUDIO_SetNormalPath(AUDIO_PATH_TYPE u8Path, AUDIO_INPUT_TYPE input, AUDIO_OUTPUT_TYPE outp… in HAL_AUDIO_SetNormalPath() argument
2617 input=input; in HAL_AUDIO_SetNormalPath()
2630 void HAL_AUDIO_SetInputPath(AUDIO_INPUT_TYPE input , AUDIO_PATH_TYPE u8Path) in HAL_AUDIO_SetInputPath() argument
2635 input1 = input; in HAL_AUDIO_SetInputPath()
2637 if((input == AUDIO_NULL_INPUT) || (u8Path ==AUDIO_PATH_NULL)) in HAL_AUDIO_SetInputPath()
2642 u8input_src = LONIBBLE(input); in HAL_AUDIO_SetInputPath()
2643 u8input_idx = HINIBBLE(input); in HAL_AUDIO_SetInputPath()
/utopia/UTPA2-700.0.x/
H A DTagLog.sh152 echo Please input tagnames.

123