Home
last modified time | relevance | path

Searched refs:NULL (Results 1 – 25 of 239) sorted by relevance

12345678910

/RvlSDK-2.1/build/libraries/tc/src/
DTCMem.cpp87 TCMemNode* MemList = NULL;
100 if( (newM = (TCMemNode*)calloc( 1,sizeof(TCMemNode))) == NULL ) in TCNewMemNode()
103 return NULL; in TCNewMemNode()
107 if( MemList == NULL ) in TCNewMemNode()
110 newM->prev = NULL; in TCNewMemNode()
111 newM->next = NULL; in TCNewMemNode()
114 else if( MemList->next == NULL ) in TCNewMemNode()
118 newM->next = NULL; in TCNewMemNode()
131 newM->next = NULL; in TCNewMemNode()
143 TCMemNode* checkNode = NULL; in TCFreeMemNode()
[all …]
DTCScriptFile.cpp102 char* PathPtr = NULL;
129 TCAssertMsg( (fp != NULL), "TCReadTplTextFile: couldn't open %s for read\n", fileName ); in TCReadTplTxtFile()
133 while( (buffPtr = fgets(lineBuff, NAME_SIZE, fp)) != NULL ) in TCReadTplTxtFile()
209 PathPtr = NULL; in TCProcessKeyName()
262 TCAssertMsg( (fileName != NULL), "TCProcessSiKey: NULL fileName for file %d\n", index ); in TCProcessSiKey()
267 if( pathName != NULL ) in TCProcessSiKey()
288 …TCAssertMsg( (newSi != NULL),"ProcessSiKey: couldn't allocate memory for new source image %d\n", i… in TCProcessSiKey()
300 char* icPtr = NULL, *iaPtr = NULL, *fmtPtr = NULL; in TCProcessImKey()
301 char* minLODPtr = NULL, *maxLODPtr = NULL, *baseLODPtr = NULL; in TCProcessImKey()
302 char* wrapSPtr = NULL, *wrapTPtr = NULL; in TCProcessImKey()
[all …]
DTCFile.cpp76 TCFile* DF = NULL; // cache for decoded files
78 u32 (*FileFn)( u32 rawSize, u8* rawBits, TCFile* dfPtr ) = NULL; // ptr to current file-readin…
79 TCFileNode* FileTable = NULL; // head of file type/fn table
110 TCAssertMsg( (ext != NULL), "TCInstallFileReadFn: null file extension\n" ); in TCInstallFileReadFn()
112 TCAssertMsg( (fileFn != NULL), "TCInstallFileReadFn: null file pointer\n" ); in TCInstallFileReadFn()
116 if( DF == NULL ) in TCInstallFileReadFn()
127 if( FileTable == NULL ) in TCInstallFileReadFn()
158 while( fileNode->next != NULL ) in TCInstallFileReadFn()
185 u8* rawBits = NULL, *cPtr = NULL; in TCReadFile()
191 TCAssertMsg( (fileName != NULL), "TCReadFile: NULL fileName\n" ); in TCReadFile()
[all …]
DTCLayer.cpp100 TCAssertMsg( (ly != NULL), "TCSetLayerAttributes: NULL layer ptr\n" ); in TCSetLayerAttributes()
129 TCAssertMsg( (ly != NULL), "TCSetLayerBuffer: NULL layer ptr\n" ); in TCSetLayerBuffer()
191 TCAssertMsg( (ly != NULL), "TCSetLayerValue: NULL layer ptr\n" ); in TCSetLayerValue()
193 TCAssertMsg( (ly->data != NULL), "TCSetLayerValue: layer data ptr is not set\n" ); in TCSetLayerValue()
243 TCAssertMsg( (ly != NULL), "TCGetLayerValue: NULL layer ptr\n" ); in TCGetLayerValue()
245 TCAssertMsg( (ly->data != NULL), "TCGetLayerValue: layer data ptr is not set\n" ); in TCGetLayerValue()
246 TCAssertMsg( (riaPtr != NULL), "TCGetLayerValue: NULL riaPtr\n" ); in TCGetLayerValue()
257 if( gPtr != NULL ) in TCGetLayerValue()
261 if( bPtr != NULL ) in TCGetLayerValue()
301 TCAssertMsg( (dfPtr != NULL), "TCMakeImColorLayer: NULL TCFile ptr\n" ); in TCMakeImColorLayer()
[all …]
DTCImageList.cpp82 TCImage* ImHead = NULL;
110 lyPtr->data = NULL; in TCSetImageValues()
123 …TCAssertMsg( (dfPtr->lyAlpha != NULL), "ImNew: no alpha layer in file %s for image %d\n", dfPtr->n… in TCSetImageValues()
130 lyPtr->data = NULL; in TCSetImageValues()
149 if( ImHead == NULL ) in TCNewImage()
163 newIm->next = NULL; in TCNewImage()
174 TCAssertMsg( (im != NULL), "TCSetImageIndex: NULL image ptr for image %d\n", index ); in TCSetImageIndex()
183 TCAssertMsg( (im != NULL), "TCSetImageLayerAtt: NULL image ptr\n" ); in TCSetImageLayerAtt()
200 TCAssertMsg( (im != NULL), "TCSetImageWrap: NULL image ptr\n" ); in TCSetImageWrap()
211 TCAssertMsg( (im != NULL), "TCSetImageTexelFormat: NULL image ptr\n" ); in TCSetImageTexelFormat()
[all …]
DTCSrcImageList.cpp74 TCSrcImage* SiHead = NULL;
89 if( SiHead == NULL ) in TCNewSrcImage()
103 newSi->next = NULL; in TCNewSrcImage()
118 if( (SiHead == NULL) || (SiHead->next == NULL) ) in TCSortSrcImageByIndex()
164 return NULL; in TCFindSrcImageByIndex()
177 return NULL; in TCFindSrcImageByIndex()
188 TCAssertMsg( (newSi != NULL), "TCSetSrcImageFromFile: NULL TCSrcImage ptr\n" ); in TCSetSrcImageFromFile()
189 TCAssertMsg( (fileName != NULL), "TCSetSrcImageFromFile: NULL file name\n" ); in TCSetSrcImageFromFile()
/RvlSDK-2.1/build/libraries/mem/src/
Dmem_list.c37 ASSERT( list != NULL ); in MEMInitList()
39 list->headObject = NULL; in MEMInitList()
40 list->tailObject = NULL; in MEMInitList()
60 ASSERT( list != NULL ); in SetFirstObject_()
61 ASSERT( object != NULL ); in SetFirstObject_()
65 link->nextObject = NULL; in SetFirstObject_()
66 link->prevObject = NULL; in SetFirstObject_()
85 ASSERT( list != NULL ); in MEMAppendListObject()
86 ASSERT( object != NULL ); in MEMAppendListObject()
88 if (list->headObject == NULL) in MEMAppendListObject()
[all …]
/RvlSDK-2.1/build/demos/hio2demo/vc++/HioIf/src/
DHio2DllIf.cpp29 if ( m_hDll != NULL ) return TRUE; in Create()
32 if ( m_hDll == NULL ) return FALSE; in Create()
48 if ( (m_fncEnumDevices == NULL) in Create()
49 || (m_fncInit == NULL) in Create()
50 || (m_fncOpen == NULL) in Create()
51 || (m_fncClose == NULL) in Create()
52 || (m_fncReadMailbox == NULL) in Create()
53 || (m_fncWriteMailbox == NULL) in Create()
54 || (m_fncRead == NULL) in Create()
55 || (m_fncWrite == NULL) in Create()
[all …]
/RvlSDK-2.1/include/revolution/
Daxfx_presets.h43 (fx)->busIn = NULL; \
44 (fx)->busOut = NULL; \
56 (fx)->busIn = NULL; \
57 (fx)->busOut = NULL; \
69 (fx)->busIn = NULL; \
70 (fx)->busOut = NULL; \
82 (fx)->busIn = NULL; \
83 (fx)->busOut = NULL; \
108 (fx)->busIn = NULL; \
109 (fx)->busOut = NULL; \
[all …]
/RvlSDK-2.1/build/demos/dvddemo/src/
Derrorhandling.c146 { "ISSUE COMMAND", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
147 { " DVDRead", DEMOWIN_ITM_NONE, MNU_read, NULL },
148 { " DVDSeek", DEMOWIN_ITM_NONE, MNU_seek, NULL },
149 { " DVDCancel", DEMOWIN_ITM_NONE, MNU_cancel, NULL },
150 { " DVDChangeDisk", DEMOWIN_ITM_NONE, MNU_change_disk, NULL },
151 { " DVDGetCurrentDiskID", DEMOWIN_ITM_NONE, MNU_get_disk_id, NULL },
152 { "", DEMOWIN_ITM_TERMINATOR, NULL, NULL }
158 NULL, // window handle
164 NULL, NULL, NULL, NULL,
172 { "255", DEMOWIN_ITM_EOF, MNU_pick_number, NULL },
[all …]
/RvlSDK-2.1/build/demos/spdemo/src/
Dspdemo.c166 { "Sound Effect", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
167 { " Noisy Drum", DEMOWIN_ITM_NONE, MNU_play_sfx, NULL },
168 { " Gunshot", DEMOWIN_ITM_NONE, MNU_play_sfx, NULL },
169 { " Voice-Man", DEMOWIN_ITM_NONE, MNU_play_sfx, NULL },
170 { " Voice-Woman", DEMOWIN_ITM_NONE, MNU_play_sfx, NULL },
171 { " Looping Strings", DEMOWIN_ITM_NONE, MNU_play_sfx, NULL },
172 { " ", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
173 { "Voice Control", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
174 { " Stop All", DEMOWIN_ITM_NONE, MNU_stop_sfx, NULL },
175 { " Stop All Looping", DEMOWIN_ITM_NONE, MNU_stop_looping, NULL },
[all …]
/RvlSDK-2.1/build/demos/axdemo/src/
Ddpl2demo.c145 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
146 { "Sound: None", DEMOWIN_ITM_NONE, MNU_sound, NULL },
147 { "Position: C Stick", DEMOWIN_ITM_NONE, MNU_position, NULL },
148 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
149 { "", DEMOWIN_ITM_TERMINATOR, NULL, NULL }
155 NULL, // window handle
161 NULL, // callback for menu open event
162 NULL, // callback for cursor move event
163 NULL, // callback for item select event
164 NULL, // callback for cancel event
[all …]
Dseqdemo.c351 midiFile = AMLoadFile(menu->items[item].name, NULL); in MNU_select_file()
421 dir_entry[index].link = NULL; in __create_dir_menu()
448 dir_entry[index].link = NULL; in __create_dir_menu()
454 dir_entry[index].function = NULL; in __create_dir_menu()
455 dir_entry[index].link = NULL; in __create_dir_menu()
461 dir_list.handle = NULL; // placeholder for window handle in __create_dir_menu()
467 dir_list.cb_open = NULL; // no callbacks in __create_dir_menu()
468 dir_list.cb_move = NULL; in __create_dir_menu()
469 dir_list.cb_select = NULL; in __create_dir_menu()
470 dir_list.cb_cancel = NULL; in __create_dir_menu()
[all …]
Dcompressor.c210 { "Tests", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
211 { " Ping test", DEMOWIN_ITM_NONE, MNU_start_ping_test, NULL },
212 { " Voice test", DEMOWIN_ITM_NONE, MNU_start_voice_test, NULL },
213 { " ", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
214 { "Manual AX Controls", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
215 { " Toggle Compressor", DEMOWIN_ITM_NONE, MNU_toggle_comp, NULL },
216 { " Play Looping Hum", DEMOWIN_ITM_NONE, MNU_play_hum, NULL },
217 { " Play Ping", DEMOWIN_ITM_NONE, MNU_play_ping, NULL },
218 { " Play Voice", DEMOWIN_ITM_NONE, MNU_play_voice, NULL },
219 { " Stop All Voices", DEMOWIN_ITM_NONE, MNU_stop_sfx, NULL },
[all …]
Daxfilter.c247 { "Sound : Guitarscape", DEMOWIN_ITM_NONE, MNU_sound, NULL },
248 { " ", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
249 { "Play ", DEMOWIN_ITM_NONE, MNU_play, NULL },
250 { "Play Looped", DEMOWIN_ITM_NONE, MNU_play_looped, NULL },
251 { "Stop", DEMOWIN_ITM_NONE, MNU_stop, NULL },
252 { " ", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
253 { "Filter : ON ", DEMOWIN_ITM_NONE, MNU_filter, NULL },
254 { "Compressor: OFF", DEMOWIN_ITM_NONE, MNU_compressor, NULL },
255 { "AuxA : (none)", DEMOWIN_ITM_NONE, MNU_auxa, NULL },
256 { " ", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
[all …]
Dexpdelay.c124 { "Sound : (none)", DEMOWIN_ITM_NONE, MNU_sound, NULL },
125 { "AuxA : (none)", DEMOWIN_ITM_NONE, MNU_auxa, NULL },
126 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
127 { "Position: C Stick", DEMOWIN_ITM_NONE, MNU_position, NULL },
128 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
129 { "Compress: No", DEMOWIN_ITM_NONE, MNU_compressor, NULL },
130 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
131 { "Kill All Voices", DEMOWIN_ITM_NONE, MNU_kill_all, NULL },
132 { "", DEMOWIN_ITM_TERMINATOR, NULL, NULL }
139 NULL, // window handle
[all …]
DexpdelayDpl2.c127 { "Sound : (none)", DEMOWIN_ITM_NONE, MNU_sound, NULL },
128 { "AuxA : (none)", DEMOWIN_ITM_NONE, MNU_auxa, NULL },
129 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
130 { "Position: C Stick", DEMOWIN_ITM_NONE, MNU_position, NULL },
131 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
132 { "Compress: No", DEMOWIN_ITM_NONE, MNU_compressor, NULL },
133 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
134 { "Kill All Voices", DEMOWIN_ITM_NONE, MNU_kill_all, NULL },
135 { "", DEMOWIN_ITM_TERMINATOR, NULL, NULL }
142 NULL, // window handle
[all …]
DexpreverbHiDpl2.c130 { "Sound : (none)", DEMOWIN_ITM_NONE, MNU_sound, NULL },
131 { "AuxA : (none)", DEMOWIN_ITM_NONE, MNU_auxa, NULL },
132 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
133 { "Position: C Stick", DEMOWIN_ITM_NONE, MNU_position, NULL },
134 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
135 { "Compress: No", DEMOWIN_ITM_NONE, MNU_compressor, NULL },
136 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
137 { "Kill All Voices", DEMOWIN_ITM_NONE, MNU_kill_all, NULL },
138 { "", DEMOWIN_ITM_TERMINATOR, NULL, NULL }
145 NULL, // window handle
[all …]
DexpreverbHi.c124 { "Sound : (none)", DEMOWIN_ITM_NONE, MNU_sound, NULL },
125 { "AuxA : (none)", DEMOWIN_ITM_NONE, MNU_auxa, NULL },
126 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
127 { "Position: C Stick", DEMOWIN_ITM_NONE, MNU_position, NULL },
128 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
129 { "Compress: No", DEMOWIN_ITM_NONE, MNU_compressor, NULL },
130 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
131 { "Kill All Voices", DEMOWIN_ITM_NONE, MNU_kill_all, NULL },
132 { "", DEMOWIN_ITM_TERMINATOR, NULL, NULL }
139 NULL, // window handle
[all …]
DexpchorusDpl2.c124 { "Sound : (none)", DEMOWIN_ITM_NONE, MNU_sound, NULL },
125 { "AuxA : (none)", DEMOWIN_ITM_NONE, MNU_auxa, NULL },
126 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
127 { "Position: C Stick", DEMOWIN_ITM_NONE, MNU_position, NULL },
128 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
129 { "Compress: No", DEMOWIN_ITM_NONE, MNU_compressor, NULL },
130 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
131 { "Kill All Voices", DEMOWIN_ITM_NONE, MNU_kill_all, NULL },
132 { "", DEMOWIN_ITM_TERMINATOR, NULL, NULL }
139 NULL, // window handle
[all …]
DexpreverbStd.c124 { "Sound : (none)", DEMOWIN_ITM_NONE, MNU_sound, NULL },
125 { "AuxA : (none)", DEMOWIN_ITM_NONE, MNU_auxa, NULL },
126 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
127 { "Position: C Stick", DEMOWIN_ITM_NONE, MNU_position, NULL },
128 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
129 { "Compress: No", DEMOWIN_ITM_NONE, MNU_compressor, NULL },
130 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
131 { "Kill All Voices", DEMOWIN_ITM_NONE, MNU_kill_all, NULL },
132 { "", DEMOWIN_ITM_TERMINATOR, NULL, NULL }
139 NULL, // window handle
[all …]
DexpreverbStdDpl2.c127 { "Sound : (none)", DEMOWIN_ITM_NONE, MNU_sound, NULL },
128 { "AuxA : (none)", DEMOWIN_ITM_NONE, MNU_auxa, NULL },
129 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
130 { "Position: C Stick", DEMOWIN_ITM_NONE, MNU_position, NULL },
131 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
132 { "Compress: No", DEMOWIN_ITM_NONE, MNU_compressor, NULL },
133 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
134 { "Kill All Voices", DEMOWIN_ITM_NONE, MNU_kill_all, NULL },
135 { "", DEMOWIN_ITM_TERMINATOR, NULL, NULL }
142 NULL, // window handle
[all …]
Dexpchorus.c125 { "Sound : (none)", DEMOWIN_ITM_NONE, MNU_sound, NULL },
126 { "AuxA : (none)", DEMOWIN_ITM_NONE, MNU_auxa, NULL },
127 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
128 { "Position: C Stick", DEMOWIN_ITM_NONE, MNU_position, NULL },
129 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
130 { "Compress: No", DEMOWIN_ITM_NONE, MNU_compressor, NULL },
131 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
132 { "Kill All Voices", DEMOWIN_ITM_NONE, MNU_kill_all, NULL },
133 { "", DEMOWIN_ITM_TERMINATOR, NULL, NULL }
140 NULL, // window handle
[all …]
Dfxbussend.c155 { "Sound : (none)", DEMOWIN_ITM_NONE, MNU_sound, NULL },
156 { "AuxA : (none)", DEMOWIN_ITM_NONE, MNU_auxa, NULL },
157 { "AuxB : (none)", DEMOWIN_ITM_NONE, MNU_auxb, NULL },
158 { "AuxC : (none)", DEMOWIN_ITM_NONE, MNU_auxc, NULL },
159 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
160 { "Position: C Stick", DEMOWIN_ITM_NONE, MNU_position, NULL },
161 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
162 { "Compress: No", DEMOWIN_ITM_NONE, MNU_compressor, NULL },
163 { "", DEMOWIN_ITM_SEPARATOR, NULL, NULL },
164 { "Kill All Voices", DEMOWIN_ITM_NONE, MNU_kill_all, NULL },
[all …]
/RvlSDK-2.1/build/tools/THPConv/src/
DTHPConv.c136 static char** jpegFilesPtr = NULL; // JPEG File name string array pointer
139 static char** waveFilesPtr = NULL; // WAV File name string array pointer
142 static char* inFile = NULL; // input filename
143 static char* outFile = NULL; // output filename
302 if (filename != NULL) in getFileNameList()
314 if (filename != NULL) in getFileNameList()
324 _splitpath(sWildcardPattern, drive, dir, NULL, NULL); in getFileNameList()
325 _makepath(path, drive, dir, NULL, NULL); in getFileNameList()
782 if (outFile == NULL) in checkArguments()
818 FILE* thpFp = NULL; in convertJPEGtoTHP()
[all …]

12345678910