Home
last modified time | relevance | path

Searched refs:line (Results 1 – 25 of 44) sorted by relevance

12

/TwlSDK-5.1.0/tools/bin/
Dconv2svnFormat.pl35 my $line;
45 while ($line = <INPUTFILE>)
48 if ($line =~ m/.*Project: *NitroSDK.*$/)
50 $line =~ s/NitroSDK/TwlSDK/;
54 if ($line =~ m/.*Copyright [0-9]+.*$/)
56 my $start = $line;
62 $line =~ s/Copyright [0-9\-,]+/Copyright $now/;
66 $line =~ s/Copyright [0-9\-,]+/Copyright $start/;
71 if ($line =~ m/\${1}Log.*\$/) # Verbose expression so this won't mistakenly convert itself
73 my $prefix = $line;
[all …]
Dxml2env.pl43 my ($src, $tmp, $line, $resource_name, $resource_count);
87 $line = "/*---------------------------------------------------------------------------*/\n";
88 $line .= "#include <nitro.h>\n";
89 $line .= "//================================================================================\n";
90 $line .= "\n";
91 print FO $line;
154 my ($line, $filedata, $char);
/TwlSDK-5.1.0/include/nitro/os/common/
Dprintf.h106 void OSi_FWarning(int console, const char *file, int line, const char *fmt, ...);
107 void OSi_TFWarning(int console, const char *file, int line, const char *fmt, ...);
108 void OSi_FPanic(int console, const char *file, int line, const char *fmt, ...);
109 void OSi_TFPanic(int console, const char *file, int line, const char *fmt, ...);
111 void OSi_Warning(const char *file, int line, const char *fmt, ...);
112 void OSi_TWarning(const char *file, int line, const char *fmt, ...);
113 void OSi_Panic(const char *file, int line, const char *fmt, ...);
114 void OSi_TPanic(const char *file, int line, const char *fmt, ...);
117 #define OSi_FWarning( console, file, line, ... ) ((void)0) argument
118 #define OSi_FPanic( console, file, line, ... ) OS_Terminate() argument
[all …]
Dinterrupt.h504 void OSi_CheckIrqStack(char *file, int line);
Dthread.h229 void OSi_CheckStack(const char *file, int line, const OSThread *thread);
/TwlSDK-5.1.0/build/demos/vib/pulse_vib/src/
Dmain.c60 static u32 *get_state_value_from_line(VIBPulseState * state, s32 line);
90 static s32 line; // Line number in menu variable
241 if (line == 0) in set_pulse_state()
243 line = (s32)(pulse_state.pulse_num * 2 - 1); in set_pulse_state()
247 line--; in set_pulse_state()
252 if (line == pulse_state.pulse_num * 2 - 1) in set_pulse_state()
254 line = 0; in set_pulse_state()
258 line++; in set_pulse_state()
263 u32 *num = get_state_value_from_line(&pulse_state, line); in set_pulse_state()
276 u32 *num = get_state_value_from_line(&pulse_state, line); in set_pulse_state()
[all …]
/TwlSDK-5.1.0/build/tools/xml2env/
Dxml2env.pl43 my ($src, $tmp, $line, $resource_name, $resource_count);
87 $line = "/*---------------------------------------------------------------------------*/\n";
88 $line .= "#include <nitro.h>\n";
89 $line .= "//================================================================================\n";
90 $line .= "\n";
91 print FO $line;
154 my ($line, $filedata, $char);
/TwlSDK-5.1.0/build/demos/mb/multiboot-wfs/child/src/overlay_test/
Dfunc_3.cpp39 Foo(int line):line_(line) in Foo() argument
/TwlSDK-5.1.0/build/libraries/os/common/src/
Dos_printf.c55 void OSi_Warning(const char *file, int line, const char *fmt, ...);
56 void OSi_TWarning(const char *file, int line, const char *fmt, ...);
57 void OSi_Panic(const char *file, int line, const char *fmt, ...);
58 void OSi_TPanic(const char *file, int line, const char *fmt, ...);
438 SDK_WEAK_SYMBOL void OSi_Warning(const char *file, int line, const char *fmt, ...) in OSi_Warning() argument
443 OS_FPrintf(OS_PRINT_OUTPUT_ERROR, "%s:%d Warning:", file, line); in OSi_Warning()
450 SDK_WEAK_SYMBOL void OSi_TWarning(const char *file, int line, const char *fmt, ...) in OSi_TWarning() argument
455 OS_TPrintf("%s:%d Warning:", file, line); in OSi_TWarning()
475 SDK_WEAK_SYMBOL void OSi_Panic(const char *file, int line, const char *fmt, ...) in OSi_Panic() argument
481 OS_FPrintf(OS_PRINT_OUTPUT_ERROR, "%s:%d Panic:", file, line); in OSi_Panic()
[all …]
Dos_interrupt.c556 void OSi_CheckIrqStack(char *file, int line) in OSi_CheckIrqStack() argument
565 OSi_Panic(file, line, "irq stack %s.\nirq stack area: %08x-%08x, warning offset: %x", in OSi_CheckIrqStack()
/TwlSDK-5.1.0/build/tools/mic2wav/
Dmain.cpp254 char line[4096]; in main() local
255 while(fgets(line, sizeof(line), f)) { in main()
256 wav.InputLine(line); in main()
/TwlSDK-5.1.0/build/buildsetup/ioreg/
Dheader_generator_ioreg.pl594 my $line;
595 while($line = <INPUTFILE>) {
597 $line =~ s/\"//g;
598 $line =~ s/\#.*//;
599 next if ($line =~ /^[\s,]*$/);
601 @fields = preprocess($line);
Dheader_generator_ioreg.TWL.pl594 my $line;
595 while($line = <INPUTFILE>) {
597 $line =~ s/\"//g;
598 $line =~ s/\#.*//;
599 next if ($line =~ /^[\s,]*$/);
601 @fields = preprocess($line);
/TwlSDK-5.1.0/build/libraries/mb/common/src/
Dmb_common.c114 void MBi_DebugPrint(const char *file, int line, const char *func, const char *fmt, ...) in MBi_DebugPrint() argument
118 OS_TPrintf("func: %s [%s:%d]:\n", func, file, line); in MBi_DebugPrint()
/TwlSDK-5.1.0/include/nitro/
Dutest.h99 void UTi_AssertMemEq(const char *file, int line,
102 void UTi_AssertMemNe(const char *file, int line,
Dmisc.h318 #define OSi_AbortByUnsupportedRegister(regname, file, line) (OSi_TPanic(file, line, " I/O register … argument
/TwlSDK-5.1.0/build/tools/makelcf/
Dspec.l250 int line = spec_yylineno;
251 if ( spec_yytext[0] == '\n' ) line --;
252 fprintf( stderr, "makelcf: line %d: %s\n", line, str );
/TwlSDK-5.1.0/build/tools/loadrun/
Dloadrun.txt2 It can be run from the command line without starting the debugger, and can be forcibly terminated w…
58 … of the displayed character string. No determination will be made until a line feed is encountered…
69 will not immediately terminate because a line break has not been added.
70 …If a line break code such as OS_Printf(&ldquo;\n&rdquo;) or OS_Printf(&ldquo; SOON\n&rdquo;) come…
/TwlSDK-5.1.0/build/tools/makelcf.TWL/
Dspec.l171 int line = spec_yylineno;
172 if ( spec_yytext[0] == '\n' ) line --;
173 fprintf( stderr, "makelcf: line %d: %s\n", line, str );
/TwlSDK-5.1.0/build/libraries/mb/common/include/
Dmb_common.h139 void MBi_DebugPrint(const char *file, int line, const char *func, const char *fmt, ...);
/TwlSDK-5.1.0/include/twl/os/common/
Dinterrupt.h604 void OSi_CheckIrqStack(char *file, int line);
/TwlSDK-5.1.0/build/tools/makelcf/test/
DARM9-TEG.autogen.lcf129 # Added ALIGN(32) for convenience to handle cache line
169 ALIGNALL(4); . = ALIGN(32); # Fit to cache line
/TwlSDK-5.1.0/build/tools/makelcf.TWL/test/
DARM9-TEG.autogen.lcf50 ALIGNALL(4); . = ALIGN(32); # Fit to cache line
/TwlSDK-5.1.0/include/twl/specfiles/
DARM9-TS-cloneboot-C.lcf.template79 . = ALIGN(32); # Fit to cache line
171 . = ALIGN(32); # Fit to cache line
213 . = ALIGN(32); # Fit to cache line
459 . = ALIGN(32); # Fit to cache line
706 . = ALIGN(32); # Fit to cache line
DARM9-TS.lcf.template80 . = ALIGN(32); # Fit to cache line
155 . = ALIGN(32); # Fit to cache line
197 . = ALIGN(32); # Fit to cache line
443 . = ALIGN(32); # Fit to cache line
686 . = ALIGN(32); # Fit to cache line

12