| /CafeSDK-2.12.13-1/system/src/lib/libsys/ |
| D | ind_tmzn.c | 79 struct tm *temp; in localtime_r() local 84 if ((temp = gmtime_r(&time_v, result))==NULL) in localtime_r() 86 if (temp->tm_year < 66) in localtime_r() 87 return temp; in localtime_r() 143 for (p=chart; p->year > temp->tm_year; p++) in localtime_r() 148 month = temp->tm_mon; in localtime_r() 155 return temp; /* isdst=0 */ in localtime_r() 161 day = (temp->tm_year < 87) ? 30: 7; in localtime_r() 162 month = temp->tm_mon; in localtime_r() 169 return temp; /* isdst=0 */ in localtime_r() [all …]
|
| D | ind_mprf.c | 188 CNT_List local, *temp = &local; in __ghs_prof_dump_callcounts() local 191 CNT_List_packed local, *temp = &local; in __ghs_prof_dump_callcounts() local 196 CNT_List *temp; in __ghs_prof_dump_callcounts() local 201 temp = __cntFreeList__; in __ghs_prof_dump_callcounts() 205 temp = (CNT_List *) __ghs_calloc(sizeof(CNT_List), 16); in __ghs_prof_dump_callcounts() 210 static CNT_List_packed *temp = NULL; in __ghs_prof_dump_callcounts() local 212 if( temp == NULL ) in __ghs_prof_dump_callcounts() 213 temp = (CNT_List_packed *) __ghs_calloc(sizeof(CNT_List_packed), in __ghs_prof_dump_callcounts() 217 if (!temp) { in __ghs_prof_dump_callcounts() 232 temp->counts[i].pc = p->counts[i].pc; in __ghs_prof_dump_callcounts() [all …]
|
| D | ind_sgnl.c | 112 SignalHandler temp, *handlers; in signal() local 127 temp = handlers[sig-1]; in signal() 129 return(temp); in signal() 134 SignalHandler temp, *handlers; in raise() local 150 temp = handlers[sig-1]; in raise() 151 if (sig==SIGKILL || temp==SIG_DFL) in raise() 153 else if (temp!=SIG_IGN) { in raise() 155 (*temp)(sig); in raise()
|
| /CafeSDK-2.12.13-1/system/src/tool/gfx/projects/SLConverter/deferredTestDX9/ |
| D | deferredTest.cpp | 112 char temp[4]; in LoadModel() local 113 posFile.read((char*)&temp, sizeof(temp)); in LoadModel() 114 ((char*)©To[i].pos[j])[0] = temp[3]; in LoadModel() 115 ((char*)©To[i].pos[j])[1] = temp[2]; in LoadModel() 116 ((char*)©To[i].pos[j])[2] = temp[1]; in LoadModel() 117 ((char*)©To[i].pos[j])[3] = temp[0]; in LoadModel() 121 char temp[4]; in LoadModel() local 122 normFile.read((char*)&temp, sizeof(temp)); in LoadModel() 123 ((char*)©To[i].norm[j])[0] = temp[3]; in LoadModel() 124 ((char*)©To[i].norm[j])[1] = temp[2]; in LoadModel() [all …]
|
| /CafeSDK-2.12.13-1/system/src/tool/CatLog/Properties/ |
| D | Resources.Designer.cs | 42 …global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CatL… 43 resourceMan = temp;
|
| /CafeSDK-2.12.13-1/system/src/lib/demo/demowin/ |
| D | demowin_tab_window.cpp | 26 float temp = this->offY; in Draw() local 59 this->offY = temp; in Draw() 110 float temp = this->offY; in PreDraw() local 121 this->offY = temp; in PreDraw()
|
| D | demowin_manager.cpp | 200 MenuItem* temp = *iter2; in SortList() local 202 *iter = temp; in SortList()
|
| /CafeSDK-2.12.13-1/system/src/tool/cafex/Properties/ |
| D | Resources.Designer.cs | 42 …global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Cafe… 43 resourceMan = temp;
|
| /CafeSDK-2.12.13-1/system/src/tool/gfx/projects/TexConv2/tgaReader/ |
| D | tgaReader.cpp | 69 u32 *temp = (u32 *)pImg; in SwapFromBottomToTop() local 77 c = temp[id0]; in SwapFromBottomToTop() 78 temp[id0] = temp[id1]; in SwapFromBottomToTop() 79 temp[id1] = c; in SwapFromBottomToTop() 88 u32 *temp = (u32 *)pImg; in SwapFromRightToLeft() local 90 assert(temp); in SwapFromRightToLeft() 98 c = temp[id0]; in SwapFromRightToLeft() 99 temp[id0] = temp[id1]; in SwapFromRightToLeft() 100 temp[id1] = c; in SwapFromRightToLeft()
|
| /CafeSDK-2.12.13-1/system/src/tool/cafex/ |
| D | Character stream dumper.cs | 1260 int temp = Convert.ToInt32(newTime); in UpdateEventTimes() 1262 int diff = temp - CatToucan.cafeProfile; in UpdateEventTimes() 1263 CatToucan.cafeProfile = temp; in UpdateEventTimes() 1306 string temp = cafeEvent.Substring(0, 12); in HandleCafeEvents() 1307 temp = this.TrimSpecial(temp, ':'); in HandleCafeEvents() 1308 CatToucan.cafeProfile = Convert.ToInt32(temp) * thousand; in HandleCafeEvents() 1324 … string temp = cafeEvent.Substring(cafeEvent.LastIndexOf("/") + 1); in HandleCafeEvents() 1325 temp = temp.Substring(0, temp.LastIndexOf(")")); in HandleCafeEvents() 1326 UpdateEventTimes(temp); in HandleCafeEvents() 1344 … string temp = cafeEvent.Substring(cafeEvent.LastIndexOf("/") + 1); in HandleCafeEvents() [all …]
|
| D | Tools.cs | 68 EnvVar temp = dictionaryOfVariables[variableName]; in RestoreSavedEnvironment() 69 temp.value = dictionaryOfSavedValues[variableName]; in RestoreSavedEnvironment()
|
| D | CafeFunctions.cs | 1887 string[] temp; in run() 1888 temp = CAFERUN_DEFAULT_OPTIONS.value.Split(' '); in run() 1891 int newLen = (temp.Length + args.Length); in run() 1895 Array.Copy(temp, defaultArgs, temp.Length); in run() 1896 Array.Copy(args, 0, defaultArgs, temp.Length, (args.Length - temp.Length)); in run()
|
| /CafeSDK-2.12.13-1/system/include/cafe/pads/wpad/ |
| D | wpadBalance.h | 40 s8 temp; // temperature member
|
| /CafeSDK-2.12.13-1/system/src/tool/gfx/projects/gshCompile/ |
| D | gshCompile.cpp | 217 char temp[32]; in appendError() local 221 sprintf_s(temp, sizeof(temp), "%d", fs->linenum); in appendError() 222 strbuf = appendBuffer(strbuf, temp, pMaxSize, pCurSize); in appendError() 349 char *temp; in processInclude() local 352 temp = (char *)calloc(1, tempsiz); in processInclude() 353 if (!temp) { in processInclude() 354 temp = "Out of memory"; in processInclude() 356 sprintf_s(temp, tempsiz, "unable to open file %s", fname); in processInclude() 358 strbuf = appendError(oldfs, temp, strbuf, pMaxSize, pCurSize); in processInclude() 359 free(temp); in processInclude()
|
| /CafeSDK-2.12.13-1/system/src/lib/szfile/ |
| D | 7zDec.c | 365 Byte *temp; in SzFolder_Decode2() local 369 temp = (Byte *)IAlloc_Alloc(allocMain, outSizeCur); in SzFolder_Decode2() 370 if (temp == 0 && outSizeCur != 0) in SzFolder_Decode2() 372 outBufCur = tempBuf[1 - ci] = temp; in SzFolder_Decode2()
|
| /CafeSDK-2.12.13-1/system/bin/tool/ |
| D | content_dump | 43 (ex. $(basename $0) -v -d usb -o c:/cygwin/temp -t 0005000011000000)
|
| /CafeSDK-2.12.13-1/system/src/lib/demo/ |
| D | demowin.cpp | 396 float temp = this->offY; in PreDraw() local 407 this->offY = temp; in PreDraw()
|
| /CafeSDK-2.12.13-1/ |
| D | cafe.bat | 249 if "%CAFE_TEMP%"=="" set CAFE_TEMP=%CAFE_ROOT%/temp/%USERNAME% 250 if not exist "%CAFE_ROOT_DOS%/temp/%USERNAME%" mkdir "%CAFE_ROOT_DOS%/temp/%USERNAME%"
|