Home
last modified time | relevance | path

Searched refs:h (Results 1 – 25 of 39) sorted by relevance

12

/RvlSDK-3.2.2/include/revolution/
Dhio2.h120 typedef void (*HIO2ReceiveCallback)( HIO2Handle h );
123 typedef void (*HIO2DmaCallback)( HIO2Handle h );
126 typedef void (*HIO2DisconnectCallback)( HIO2Handle h );
144 HIO2DeviceType HIO2GetDeviceType ( HIO2Handle h );
148 HIO2API BOOL HIO2Close ( HIO2Handle h );
149 HIO2API BOOL HIO2ReadMailbox ( HIO2Handle h, u32* mail );
150 HIO2API BOOL HIO2WriteMailbox ( HIO2Handle h, u32 mail );
151 HIO2API BOOL HIO2Read ( HIO2Handle h, u32 addr, void* buffer, s32 size );
152 HIO2API BOOL HIO2Write ( HIO2Handle h, u32 addr, const void* buffer, s32 size );
153 HIO2API BOOL HIO2ReadAsync ( HIO2Handle h, u32 addr, void* buffer, s32 size, HIO2DmaCallback call…
[all …]
Deppc.RVL.lcf1 /* #line 1 "default.lcf.h" /* stack depth 0 */
2 /* #line 1 "boot.h" /* stack depth 1 */
3 /* #line 34 "default.lcf.h" /* stack depth 0 */
/RvlSDK-3.2.2/build/demos/hio2demo/vc++/HioIf/src/
DHio2DllIf.cpp102 BOOL CHio2DllIf::Close( HIO2Handle h ) in Close() argument
105 return m_fncClose(h); in Close()
109 BOOL CHio2DllIf::ReadMailbox( HIO2Handle h, u32* mail ) in ReadMailbox() argument
112 return m_fncReadMailbox(h, mail); in ReadMailbox()
116 BOOL CHio2DllIf::WriteMailbox( HIO2Handle h, u32 mail ) in WriteMailbox() argument
119 return m_fncWriteMailbox(h, mail); in WriteMailbox()
123 BOOL CHio2DllIf::Read( HIO2Handle h, u32 addr, void* buffer, s32 size ) in Read() argument
126 return m_fncRead(h, addr, buffer, size); in Read()
130 BOOL CHio2DllIf::Write( HIO2Handle h, u32 addr, const void* buffer, s32 size ) in Write() argument
133 return m_fncWrite(h, addr, buffer, size); in Write()
[all …]
DHio2IfHost.cpp76 void hio2Callback(HIO2Handle h) in hio2Callback() argument
93 id = l_pHio2If->GetIdOfHandle(h); in hio2Callback()
95 l_pHio2If->GetDllIf().ReadMailbox(h, &mail); in hio2Callback()
112 l_pHio2If->GetDllIf().WriteMailbox(h, in hio2Callback()
146 void hio2ReadAsyncCallback(HIO2Handle h) in hio2ReadAsyncCallback() argument
149 int id = l_pHio2If->GetIdOfHandle(h); in hio2ReadAsyncCallback()
159 l_pHio2If->GetDllIf().WriteMailbox(h, in hio2ReadAsyncCallback()
178 void hio2WriteAsyncCallback(HIO2Handle h) in hio2WriteAsyncCallback() argument
181 int id = l_pHio2If->GetIdOfHandle(h); in hio2WriteAsyncCallback()
191 l_pHio2If->GetDllIf().WriteMailbox(h, in hio2WriteAsyncCallback()
[all …]
/RvlSDK-3.2.2/build/demos/hio2demo/vc++/HioIf/include/
DHio2DllIf.h30 BOOL Close ( HIO2Handle h );
31 BOOL ReadMailbox ( HIO2Handle h, u32* mail );
32 BOOL WriteMailbox ( HIO2Handle h, u32 mail );
33 BOOL Read ( HIO2Handle h, u32 addr, void* buffer, s32 size );
34 BOOL Write ( HIO2Handle h, u32 addr, const void* buffer, s32 size );
35 BOOL ReadAsync ( HIO2Handle h, u32 addr, void* buffer, s32 size, HIO2DmaCallback callback );
36 …BOOL WriteAsync ( HIO2Handle h, u32 addr, const void* buffer, s32 size, HIO2DmaCallback callback…
37 BOOL ReadStatus ( HIO2Handle h, u32* status );
/RvlSDK-3.2.2/
Dindex.allpl13 build/demos/axdemo/include/axartdemo.h 1bda20e882d7eff586f42899b783761f1ad8361b608fec515bc01f6b23ce…
14 build/demos/axdemo/include/comp_sp.h 42af2cdfc0e32b50ec3198eb9ff42552b0c8534beed27a04faef978f07938f…
15 build/demos/axdemo/include/dpl2reverb.h 0777a6c79d9918f8ee45b1b9ad2727dc11b435196641ee730942d29712d…
16 build/demos/axdemo/include/lpfdemo.h de5ae910b93a458653c8775758e846698b41eac6ecc5085b97044e98133407…
17 build/demos/axdemo/include/noise.h 78600f3a8c80cca5454a1d4cc206ddbdf20d62cc564e8cc933a7e325587e4fbd…
49 build/demos/dvddemo/include/selectfile.h 106f630db8cdb848ac7457fd504cfd80b666c61ae22d7d6d1f0c6cf960…
58 build/demos/encdemo/include/demostrings.h 37529fd816028ac2aeff45f5dc27601a02edc321086c35a83c801fde4…
59 build/demos/encdemo/include/validate.h 82bbadc0ad6b81746fd5e7f59ef2fc26e401e8ca7750cf3c2c0f6832669c…
70 build/demos/gddemo/include/gd-indtex.h 62f374b623ecc5b033207abc08fc2f346cf896665b451eec16506be38463…
71 build/demos/gddemo/include/gd-light.h 2c6b66b8f9f36979a2cd675d858c215ea733e62cbdac78dfa435a9ea83783…
[all …]
/RvlSDK-3.2.2/build/demos/hio2demo/vc++/simple/
Dsimple.cpp70 void __ReceiveCallback( HIO2Handle h ) in __ReceiveCallback() argument
76 if ( !l_cHio2Dll.ReadMailbox(h, &mail) ) in __ReceiveCallback()
84 if ( !l_cHio2Dll.WriteMailbox(h, SIMPLE_MAIL_OPEN_RESULT) ) in __ReceiveCallback()
89 if ( !l_cHio2Dll.Read(h, SIMPLE_NNGC2PC_ADDR, &l_stRecvBuffer, in __ReceiveCallback()
97 l_cHio2Dll.Close(h); in __ReceiveCallback()
/RvlSDK-3.2.2/build/tools/dspadpcm/src/
Dmain.c516 void dump_header(DSPADPCMHEADER *h, FILE *handle) in dump_header() argument
527 fprintf(handle, "Length : %d samples\n", reverse_endian_32(h->num_samples)); in dump_header()
528 fprintf(handle, "Num nibbles: %d ADPCM nibbles\n", reverse_endian_32(h->num_adpcm_nibbles)); in dump_header()
530 fprintf(handle, "Sample Rate: %d Hz\n", reverse_endian_32(h->sample_rate)); in dump_header()
531 …fprintf(handle, "Loop Flag : %s\n", VOICE_TYPE_LOOPED == reverse_endian_16(h->loop_flag) ? "LOOPE… in dump_header()
535 …fprintf(handle, "Start Addr : 0x%08X + ARAM_offset (ADPCM nibble mode)\n", reverse_endian_32(h->sa… in dump_header()
536 …fprintf(handle, "End Addr : 0x%08X + ARAM_offset (ADPCM nibble mode)\n", reverse_endian_32(h->ea… in dump_header()
537 …fprintf(handle, "Curr Addr : 0x%08X + ARAM_offset (ADPCM nibble mode)\n", reverse_endian_32(h->ca… in dump_header()
544 …, "a1[%d]: 0x%04X a2[%d]: 0x%04X \n", j, reverse_endian_16(h->coef[i]), j, reverse_endian_16(h->co… in dump_header()
550 fprintf(handle, "Gain : 0x%04X\n", reverse_endian_16(h->gain)); in dump_header()
[all …]
/RvlSDK-3.2.2/include/dolphin/
Deppc.HW2.lcf1 /* #line 1 "default.lcf.h" /* stack depth 0 */
2 /* #line 1 "boot.h" /* stack depth 1 */
3 /* #line 34 "default.lcf.h" /* stack depth 0 */
/RvlSDK-3.2.2/build/demos/reldemo/
Dstatic.lcf1 /* #line 1 "default.lcf.h" /* stack depth 0 */
2 /* #line 1 "boot.h" /* stack depth 1 */
3 /* #line 34 "default.lcf.h" /* stack depth 0 */
DstaticD.lcf1 /* #line 1 "default.lcf.h" /* stack depth 0 */
2 /* #line 1 "boot.h" /* stack depth 1 */
3 /* #line 34 "default.lcf.h" /* stack depth 0 */
/RvlSDK-3.2.2/build/demos/hio2demo/src/
Dsimple.c97 void myReceiveCallback( HIO2Handle h ) in myReceiveCallback() argument
101 if ( !HIO2ReadMailbox(h, &mail) ) myHalt(SIMPLE_ERR_HIO2_READ_MAILBOX); in myReceiveCallback()
109 if ( !HIO2Read(h, SIMPLE_PC2NNGC_ADDR, &recvBuffer, in myReceiveCallback()
121 void myDisconnectCallback( HIO2Handle h ) in myDisconnectCallback() argument
123 #pragma unused(h) in myDisconnectCallback()
Ddual-main.c355 #define CLAMP(x,l,h) ((x > h) ? h : ((x < l) ? l : x)) in myMakeColor() argument
384 u32 x=96, y=128, w=128, h=192, col = myMakeColor(); in myPaintBox() local
388 for (i=0; i<h; i++) in myPaintBox()
/RvlSDK-3.2.2/include/demo/
DDEMOWin.h108 #define DEMOWIN_CALC_MENU_HEIGHT_PIXELS(h) (((DEMOWIN_Y_CHAR_PAD+(h))*FONT_CHAR_HEIGHT)+4) argument
415 #define DEMOWinGetNumRows(h) ((h)->char_width) argument
416 #define DEMOWinGetNumCols(h) ((h)->char_height) argument
/RvlSDK-3.2.2/build/demos/gxdemo/src/Indirect/
Dind-bump-xyz.c124 void setupSize(u16 w, u16 h);
150 f32 h, v; in createCube() local
154 h = ((i % 3)!=0) - 0.5f; in createCube()
157 cube[0][i].x = h; in createCube()
162 cube[1][i].z = -h; in createCube()
163 cube[2][i].x = -h; in createCube()
168 cube[3][i].z = h; in createCube()
169 cube[4][i].x = h; in createCube()
172 cube[5][i].x = h; in createCube()
259 void setupSize(u16 w, u16 h) in setupSize() argument
[all …]
Dind-pseudo-3d.c66 void adjustPoint(coord height[HFH][HFW], u16 r, u16 c, f32 h);
113 void adjustPoint(coord height[HFH][HFW], u16 r, u16 c, f32 h) in adjustPoint() argument
118 h += i/40.0f; in adjustPoint()
119 if (h < -10.0f || h > 10.0f) in adjustPoint()
121 h -= i/20.0f; in adjustPoint()
123 height[r][c].z = h; in adjustPoint()
131 f32 h; in createHeightField() local
171 h = (height[r-1][c].z + height[r][c-1].z)/2.0f; in createHeightField()
172 adjustPoint(height, r, c, h); in createHeightField()
Dind-bump-st.c100 void setupSize(u16 w, u16 h);
200 void setupSize(u16 w, u16 h) in setupSize() argument
202 GXSetViewport(0, 0, w, h, 0, 1); in setupSize()
203 GXSetScissor(0, 0, w, h); in setupSize()
204 GXSetDispCopySrc(0, 0, w, h); in setupSize()
205 GXSetDispCopyDst(w, h); in setupSize()
207 GXSetTexCopySrc(0, 0, w, h); in setupSize()
208 GXSetTexCopyDst(w, h, LIT_TEX_FMT, FALSE); in setupSize()
/RvlSDK-3.2.2/build/demos/hio2demo/HioIf/src/
DHio2If.c89 s32 hio2GetIdOfHandle(HIO2Handle h) in hio2GetIdOfHandle() argument
91 return (hio2Status[0].hHIO == h) ? 0 : 1; in hio2GetIdOfHandle()
112 void hio2ReceiveCallback( HIO2Handle h ) in hio2ReceiveCallback() argument
118 (void)HIO2ReadMailbox(h, &mail); in hio2ReceiveCallback()
119 id = hio2GetIdOfHandle(h); in hio2ReceiveCallback()
152 void hio2ReadAsyncCallback( HIO2Handle h ) in hio2ReadAsyncCallback() argument
154 s32 id = hio2GetIdOfHandle(h); in hio2ReadAsyncCallback()
178 void hio2WriteAsyncCallback( HIO2Handle h ) in hio2WriteAsyncCallback() argument
180 s32 id = hio2GetIdOfHandle(h); in hio2WriteAsyncCallback()
201 void hio2DisconnectCallback( HIO2Handle h ) in hio2DisconnectCallback() argument
[all …]
/RvlSDK-3.2.2/build/demos/hio2demo/vc++/multi/
DReadMe.txt18 multi.h
20 project specific headers (including Resource.h) and declares the
45 MainFrm.h, MainFrm.cpp
52 ChildFrm.h, ChildFrm.cpp
60 multiDoc.h, multiDoc.cpp - the document
64 multiView.h, multiView.cpp - the view of the document
81 StdAfx.h, StdAfx.cpp
85 Resource.h
/RvlSDK-3.2.2/build/demos/hio2demo/vc++/dual/
DReadMe.txt18 dual.h
20 project specific headers (including Resource.h) and declares the
45 MainFrm.h, MainFrm.cpp
52 dualDoc.h, dualDoc.cpp - the document
56 dualView.h, dualView.cpp - the view of the document
69 StdAfx.h, StdAfx.cpp
73 Resource.h
/RvlSDK-3.2.2/build/demos/gxdemo/src/PixelProc/
Dcmn-model.c328 s32 i, y, h; in cmModel2_Anim() local
346 h = obj2_height[i][y] + ((signed)(rand() & 63)) - 32; in cmModel2_Anim()
347 if ( h > 100 ) h -= 48; in cmModel2_Anim()
348 if ( h < 0 ) h = -h; in cmModel2_Anim()
349 obj2_height[i][obj2_ybase] = (s16)h; in cmModel2_Anim()
496 f32 w, h; member
596 hcos = obj3[i].h * cs; in cmModel3_Draw()
597 hsin = obj3[i].h * sn; in cmModel3_Draw()
/RvlSDK-3.2.2/build/demos/videmo/src/
Dbmp.c40 #define CLAMP(x,l,h) ((x > h) ? h : ((x < l) ? l : x)) argument
/RvlSDK-3.2.2/build/demos/rsodemo/LinkFar/
DMakefile55 CSRCS_D = g.c h.c
119 cp $(FULLBIN_ROOT)/h$(RSOSUFFIX) dvddata
/RvlSDK-3.2.2/build/demos/rsodemo/MakeInc/
DMakefile118 $(MODULE_ROOT)/include/d.inc: $(MODULE_ROOT)/include/d.h
121 makeinc.exe -o $(MODULE_ROOT)/include/d.inc -l moduleD $(MODULE_ROOT)/include/d.h
/RvlSDK-3.2.2/include/win32/
Dthpcore.h50 u32 h[3]; member

12