• Home
  • Raw
  • Download

Lines Matching defs:s

69 static void SC_debugF(const char *s, float f) {  in SC_debugF()
72 static void SC_debugFv2(const char *s, float f1, float f2) { in SC_debugFv2()
75 static void SC_debugFv3(const char *s, float f1, float f2, float f3) { in SC_debugFv3()
78 static void SC_debugFv4(const char *s, float f1, float f2, float f3, float f4) { in SC_debugFv4()
81 static void SC_debugF2(const char *s, const float2 *f) { in SC_debugF2()
84 static void SC_debugF3(const char *s, const float3 *f) { in SC_debugF3()
87 static void SC_debugF4(const char *s, const float4 *f) { in SC_debugF4()
90 static void SC_debugD(const char *s, double d) { in SC_debugD()
93 static void SC_debugD2(const char *s, const double2 *f) { in SC_debugD2()
96 static void SC_debugD3(const char *s, const double3 *f) { in SC_debugD3()
99 static void SC_debugD4(const char *s, const double4 *f) { in SC_debugD4()
103 static void SC_debugFM4v4(const char *s, const float *f) { in SC_debugFM4v4()
109 static void SC_debugFM3v3(const char *s, const float *f) { in SC_debugFM3v3()
114 static void SC_debugFM2v2(const char *s, const float *f) { in SC_debugFM2v2()
118 static void SC_debugI8(const char *s, char c) { in SC_debugI8()
121 static void SC_debugC2(const char *s, const char2 *c) { in SC_debugC2()
124 static void SC_debugC3(const char *s, const char3 *c) { in SC_debugC3()
127 static void SC_debugC4(const char *s, const char4 *c) { in SC_debugC4()
130 static void SC_debugU8(const char *s, unsigned char c) { in SC_debugU8()
133 static void SC_debugUC2(const char *s, const uchar2 *c) { in SC_debugUC2()
136 static void SC_debugUC3(const char *s, const uchar3 *c) { in SC_debugUC3()
139 static void SC_debugUC4(const char *s, const uchar4 *c) { in SC_debugUC4()
142 static void SC_debugI16(const char *s, short c) { in SC_debugI16()
145 static void SC_debugS2(const char *s, const short2 *c) { in SC_debugS2()
148 static void SC_debugS3(const char *s, const short3 *c) { in SC_debugS3()
151 static void SC_debugS4(const char *s, const short4 *c) { in SC_debugS4()
154 static void SC_debugU16(const char *s, unsigned short c) { in SC_debugU16()
157 static void SC_debugUS2(const char *s, const ushort2 *c) { in SC_debugUS2()
160 static void SC_debugUS3(const char *s, const ushort3 *c) { in SC_debugUS3()
163 static void SC_debugUS4(const char *s, const ushort4 *c) { in SC_debugUS4()
166 static void SC_debugI32(const char *s, int32_t i) { in SC_debugI32()
169 static void SC_debugI2(const char *s, const int2 *i) { in SC_debugI2()
172 static void SC_debugI3(const char *s, const int3 *i) { in SC_debugI3()
175 static void SC_debugI4(const char *s, const int4 *i) { in SC_debugI4()
178 static void SC_debugU32(const char *s, uint32_t i) { in SC_debugU32()
181 static void SC_debugUI2(const char *s, const uint2 *i) { in SC_debugUI2()
184 static void SC_debugUI3(const char *s, const uint3 *i) { in SC_debugUI3()
187 static void SC_debugUI4(const char *s, const uint4 *i) { in SC_debugUI4()
190 static void SC_debugLL64(const char *s, long long ll) { in SC_debugLL64()
193 static void SC_debugL2(const char *s, const long2 *ll) { in SC_debugL2()
196 static void SC_debugL3(const char *s, const long3 *ll) { in SC_debugL3()
199 static void SC_debugL4(const char *s, const long4 *ll) { in SC_debugL4()
202 static void SC_debugULL64(const char *s, unsigned long long ll) { in SC_debugULL64()
205 static void SC_debugUL2(const char *s, const ulong2 *ll) { in SC_debugUL2()
208 static void SC_debugUL3(const char *s, const ulong3 *ll) { in SC_debugUL3()
211 static void SC_debugUL4(const char *s, const ulong4 *ll) { in SC_debugUL4()
214 static void SC_debugP(const char *s, const void *p) { in SC_debugP()
313 RsdCpuScriptImpl *s = (RsdCpuScriptImpl *)pContext; in lookupRuntimeStub() local