Home
last modified time | relevance | path

Searched refs:trace (Results 1 – 25 of 149) sorted by relevance

123456

/external/quake/quake/src/QW/client/
Dpmovetst.c176 …siveHullCheck (hull_t *hull, int num, float p1f, float p2f, vec3_t p1, vec3_t p2, pmtrace_t *trace) in PM_RecursiveHullCheck() argument
192 trace->allsolid = false; in PM_RecursiveHullCheck()
194 trace->inopen = true; in PM_RecursiveHullCheck()
196 trace->inwater = true; in PM_RecursiveHullCheck()
199 trace->startsolid = true; in PM_RecursiveHullCheck()
225 return PM_RecursiveHullCheck (hull, node->children[0], p1f, p2f, p1, p2, trace); in PM_RecursiveHullCheck()
227 return PM_RecursiveHullCheck (hull, node->children[1], p1f, p2f, p1, p2, trace); in PM_RecursiveHullCheck()
230 return PM_RecursiveHullCheck (hull, node->children[0], p1f, p2f, p1, p2, trace); in PM_RecursiveHullCheck()
232 return PM_RecursiveHullCheck (hull, node->children[1], p1f, p2f, p1, p2, trace); in PM_RecursiveHullCheck()
252 if (!PM_RecursiveHullCheck (hull, node->children[side], p1f, midf, p1, mid, trace) ) in PM_RecursiveHullCheck()
[all …]
Dpmove.c116 pmtrace_t trace; in PM_FlyMove() local
135 trace = PM_PlayerMove (pmove.origin, end); in PM_FlyMove()
137 if (trace.startsolid || trace.allsolid) in PM_FlyMove()
143 if (trace.fraction > 0) in PM_FlyMove()
145 VectorCopy (trace.endpos, pmove.origin); in PM_FlyMove()
149 if (trace.fraction == 1) in PM_FlyMove()
153 pmove.touchindex[pmove.numtouch] = trace.ent; in PM_FlyMove()
156 if (trace.plane.normal[2] > 0.7) in PM_FlyMove()
160 if (!trace.plane.normal[2]) in PM_FlyMove()
165 time_left -= time_left * trace.fraction; in PM_FlyMove()
[all …]
Dgl_test.c50 trace_t trace; in HitPlane() local
53 memset (&trace, 0, sizeof(trace_t)); in HitPlane()
54 trace.fraction = 1; in HitPlane()
55 trace.allsolid = true; in HitPlane()
56 VectorCopy (end, trace.endpos); in HitPlane()
58 SV_RecursiveHullCheck (cl.worldmodel->hulls, 0, 0, 1, start, end, &trace); in HitPlane()
60 junk = trace.plane; in HitPlane()
Dcl_cam.c154 pmtrace_t trace; in Cam_TryFlyby() local
164 trace = Cam_DoTrace(player->origin, v); in Cam_TryFlyby()
165 if (/*trace.inopen ||*/ trace.inwater) in Cam_TryFlyby()
167 VectorCopy(trace.endpos, vec); in Cam_TryFlyby()
168 VectorSubtract(trace.endpos, player->origin, v); in Cam_TryFlyby()
173 VectorSubtract(trace.endpos, self->origin, v); in Cam_TryFlyby()
176 trace = Cam_DoTrace(self->origin, vec); in Cam_TryFlyby()
177 if (trace.fraction != 1 || trace.inwater) in Cam_TryFlyby()
186 pmtrace_t trace; in Cam_IsVisible() local
190 trace = Cam_DoTrace(player->origin, vec); in Cam_IsVisible()
[all …]
/external/quake/quake/src/WinQuake/
Dworld.cpp39 trace_t trace; member
553 trace_t trace; in SV_TestEntityPosition() local
555 trace = SV_Move (ent->u.v.origin, ent->u.v.mins, ent->u.v.maxs, ent->u.v.origin, 0, ent); in SV_TestEntityPosition()
557 if (trace.startsolid) in SV_TestEntityPosition()
581 …ursiveHullCheck (hull_t *hull, int num, float p1f, float p2f, vec3_t p1, vec3_t p2, trace_t *trace) in SV_RecursiveHullCheck() argument
597 trace->allsolid = false; in SV_RecursiveHullCheck()
599 trace->inopen = true; in SV_RecursiveHullCheck()
601 trace->inwater = true; in SV_RecursiveHullCheck()
604 trace->startsolid = true; in SV_RecursiveHullCheck()
630 return SV_RecursiveHullCheck (hull, node->children[0], p1f, p2f, p1, p2, trace); in SV_RecursiveHullCheck()
[all …]
Dsv_move.cpp40 trace_t trace; in SV_CheckBottom() local
74 trace = SV_Move (start, vec3_origin, vec3_origin, stop, true, ent); in SV_CheckBottom()
76 if (trace.fraction == 1.0) in SV_CheckBottom()
78 mid = bottom = trace.endpos[2]; in SV_CheckBottom()
87 trace = SV_Move (start, vec3_origin, vec3_origin, stop, true, ent); in SV_CheckBottom()
89 if (trace.fraction != 1.0 && trace.endpos[2] > bottom) in SV_CheckBottom()
90 bottom = trace.endpos[2]; in SV_CheckBottom()
91 if (trace.fraction == 1.0 || mid - trace.endpos[2] > STEPSIZE) in SV_CheckBottom()
114 trace_t trace; in SV_movestep() local
138 trace = SV_Move (ent->u.v.origin, ent->u.v.mins, ent->u.v.maxs, neworg, false, ent); in SV_movestep()
[all …]
Dsv_phys.cpp238 trace_t trace; in SV_FlyMove() local
260 trace = SV_Move (ent->u.v.origin, ent->u.v.mins, ent->u.v.maxs, end, false, ent); in SV_FlyMove()
262 if (trace.allsolid) in SV_FlyMove()
268 if (trace.fraction > 0) in SV_FlyMove()
270 VectorCopy (trace.endpos, ent->u.v.origin); in SV_FlyMove()
275 if (trace.fraction == 1) in SV_FlyMove()
278 if (!trace.ent) in SV_FlyMove()
281 if (trace.plane.normal[2] > 0.7) in SV_FlyMove()
284 if (trace.ent->u.v.solid == SOLID_BSP) in SV_FlyMove()
287 ent->u.v.groundentity = EDICT_TO_PROG(trace.ent); in SV_FlyMove()
[all …]
Dgl_test.cpp50 trace_t trace; in HitPlane() local
53 memset (&trace, 0, sizeof(trace_t)); in HitPlane()
54 trace.fraction = 1; in HitPlane()
55 trace.allsolid = true; in HitPlane()
56 VectorCopy (end, trace.endpos); in HitPlane()
58 SV_RecursiveHullCheck (cl.worldmodel->hulls, 0, 0, 1, start, end, &trace); in HitPlane()
60 junk = trace.plane; in HitPlane()
Dchase.cpp52 trace_t trace; in TraceLine() local
54 memset (&trace, 0, sizeof(trace)); in TraceLine()
55 SV_RecursiveHullCheck (cl.worldmodel->hulls, 0, 0, 1, start, end, &trace); in TraceLine()
57 VectorCopy (trace.endpos, impact); in TraceLine()
Dpr_cmds.cpp612 trace_t trace; in PF_traceline() local
621 trace = SV_Move (v1, vec3_origin, vec3_origin, v2, nomonsters, ent); in PF_traceline()
623 pr_global_struct->trace_allsolid = trace.allsolid; in PF_traceline()
624 pr_global_struct->trace_startsolid = trace.startsolid; in PF_traceline()
625 pr_global_struct->trace_fraction = trace.fraction; in PF_traceline()
626 pr_global_struct->trace_inwater = trace.inwater; in PF_traceline()
627 pr_global_struct->trace_inopen = trace.inopen; in PF_traceline()
628 VectorCopy (trace.endpos, pr_global_struct->trace_endpos); in PF_traceline()
629 VectorCopy (trace.plane.normal, pr_global_struct->trace_plane_normal); in PF_traceline()
630 pr_global_struct->trace_plane_dist = trace.plane.dist; in PF_traceline()
[all …]
/external/quake/quake/src/QW/server/
Dworld.c39 trace_t trace; member
506 trace_t trace; in SV_TestEntityPosition() local
508 trace = SV_Move (ent->v.origin, ent->v.mins, ent->v.maxs, ent->v.origin, 0, ent); in SV_TestEntityPosition()
510 if (trace.startsolid) in SV_TestEntityPosition()
533 …ursiveHullCheck (hull_t *hull, int num, float p1f, float p2f, vec3_t p1, vec3_t p2, trace_t *trace) in SV_RecursiveHullCheck() argument
549 trace->allsolid = false; in SV_RecursiveHullCheck()
551 trace->inopen = true; in SV_RecursiveHullCheck()
553 trace->inwater = true; in SV_RecursiveHullCheck()
556 trace->startsolid = true; in SV_RecursiveHullCheck()
582 return SV_RecursiveHullCheck (hull, node->children[0], p1f, p2f, p1, p2, trace); in SV_RecursiveHullCheck()
[all …]
Dsv_move.c40 trace_t trace; in SV_CheckBottom() local
74 trace = SV_Move (start, vec3_origin, vec3_origin, stop, true, ent); in SV_CheckBottom()
76 if (trace.fraction == 1.0) in SV_CheckBottom()
78 mid = bottom = trace.endpos[2]; in SV_CheckBottom()
87 trace = SV_Move (start, vec3_origin, vec3_origin, stop, true, ent); in SV_CheckBottom()
89 if (trace.fraction != 1.0 && trace.endpos[2] > bottom) in SV_CheckBottom()
90 bottom = trace.endpos[2]; in SV_CheckBottom()
91 if (trace.fraction == 1.0 || mid - trace.endpos[2] > STEPSIZE) in SV_CheckBottom()
114 trace_t trace; in SV_movestep() local
138 trace = SV_Move (ent->v.origin, ent->v.mins, ent->v.maxs, neworg, false, ent); in SV_movestep()
[all …]
Dsv_phys.c247 trace_t trace; in SV_FlyMove() local
266 trace = SV_Move (ent->v.origin, ent->v.mins, ent->v.maxs, end, false, ent); in SV_FlyMove()
268 if (trace.allsolid) in SV_FlyMove()
274 if (trace.fraction > 0) in SV_FlyMove()
276 VectorCopy (trace.endpos, ent->v.origin); in SV_FlyMove()
281 if (trace.fraction == 1) in SV_FlyMove()
284 if (!trace.ent) in SV_FlyMove()
287 if (trace.plane.normal[2] > 0.7) in SV_FlyMove()
290 if (trace.ent->v.solid == SOLID_BSP) in SV_FlyMove()
293 ent->v.groundentity = EDICT_TO_PROG(trace.ent); in SV_FlyMove()
[all …]
/external/libnfc-nxp/Linux_x86/
DphDal4Nfc_debug.h15 char trace[MAX_TRACE_BUFFER]; \
16 snprintf(trace,MAX_TRACE_BUFFER,str,arg); \
17 phOsalNfc_DbgString(trace); \
23 char trace[MAX_TRACE_BUFFER]; \
24 snprintf(trace,MAX_TRACE_BUFFER,"\n\t %s:",msg); \
25 phOsalNfc_DbgString(trace); \
/external/qemu/docs/
DANDROID-TRACING.TXT1 This document details how the Android-specific -trace <name> instruction works.
6 to the emulator (e.g. context switches, forks, execs, etc...). Used by both -trace
9 trace.c/trace.h:
16 - a header included by "trace.h" but also by the sources of the trace file processor
40 (see trace.c, some of these miss a declaration in trace.h)
45 (implemented in trace.c). This does not account for dynamic data interlocks or
/external/webkit/WebCore/platform/graphics/android/
DFontPlatformDataAndroid.cpp59 …#define trace(num) SkDebugf("FontPlatformData%d %p %g %d %d\n", num, mTypeface, mTextSize, mFakeB… macro
61 #define trace(num) macro
70 trace(1); in FontPlatformData()
86 trace(2); in FontPlatformData()
97 trace(3); in FontPlatformData()
108 trace(4); in FontPlatformData()
115 trace(5); in FontPlatformData()
/external/blktrace/
Dblkiomon.c44 struct trace { struct
47 struct trace *next; argument
79 static struct trace *vacant_traces_list = NULL;
83 struct trace *thash[TRACE_HASH_SIZE] = {};
106 static void dump_bit(struct trace *t, const char *descr) in dump_bit()
129 static void dump_bits(struct trace *t1, struct trace *t2, const char *descr) in dump_bits()
338 static struct trace *blkiomon_alloc_trace(void) in blkiomon_alloc_trace()
340 struct trace *t = vacant_traces_list; in blkiomon_alloc_trace()
350 static void blkiomon_free_trace(struct trace *t) in blkiomon_free_trace()
366 static void blkiomon_store_trace(struct trace *t) in blkiomon_store_trace()
[all …]
/external/v8/src/
Djsregexp.cc1056 void NegativeSubmatchSuccess::Emit(RegExpCompiler* compiler, Trace* trace) { in Emit() argument
1083 void EndNode::Emit(RegExpCompiler* compiler, Trace* trace) { in Emit() argument
1084 if (!trace->is_trivial()) { in Emit()
1085 trace->Flush(compiler, this); in Emit()
1097 assembler->GoTo(trace->backtrack()); in Emit()
1205 Trace* trace) { in GenerateGuard() argument
1208 ASSERT(!trace->mentions_reg(guard->reg())); in GenerateGuard()
1211 trace->backtrack()); in GenerateGuard()
1214 ASSERT(!trace->mentions_reg(guard->reg())); in GenerateGuard()
1217 trace->backtrack()); in GenerateGuard()
[all …]
/external/chromium/base/
Ddebug_util_unittest.cc16 StackTrace trace; in TEST() local
20 trace.OutputToStream(&os); in TEST()
31 trace.Addresses(&frames_found); in TEST()
99 StackTrace trace; in TEST() local
101 trace.OutputToStream(&os); in TEST()
Dtrace_event.cc48 TraceLog* trace = Singleton<TraceLog>::get(); in IsTracing() local
49 return trace->enabled_; in IsTracing()
54 TraceLog* trace = Singleton<TraceLog>::get(); in StartTracing() local
55 return trace->Start(); in StartTracing()
72 TraceLog* trace = Singleton<TraceLog>::get(); in StopTracing() local
73 return trace->Stop(); in StopTracing()
Ddebug_util_posix.cc99 bool GetBacktraceStrings(void **trace, int size, in GetBacktraceStrings() argument
108 if (google::Symbolize(static_cast<char *>(trace[i]) - 1, in GetBacktraceStrings()
112 trace_strings->push_back(StringPrintf("%s [%p]", symbol, trace[i])); in GetBacktraceStrings()
115 trace_strings->push_back(StringPrintf("%p", trace[i])); in GetBacktraceStrings()
119 scoped_ptr_malloc<char*> trace_symbols(backtrace_symbols(trace, size)); in GetBacktraceStrings()
129 trace_strings->push_back(StringPrintf("%p", trace[i])); in GetBacktraceStrings()
Devent_trace_consumer_win_unittest.cc296 HRESULT RoundTripEvent(PEVENT_TRACE_HEADER header, PEVENT_TRACE* trace) { in RoundTripEvent() argument
310 *trace = &events_.back(); in RoundTripEvent()
328 PEVENT_TRACE trace = NULL; in TEST_F() local
329 HRESULT hr = RoundTripEvent(&event.header, &trace); in TEST_F()
334 ASSERT_TRUE(NULL != trace); in TEST_F()
335 ASSERT_EQ(sizeof(kData), trace->MofLength); in TEST_F()
336 ASSERT_STREQ(kData, reinterpret_cast<const char*>(trace->MofData)); in TEST_F()
/external/kernel-headers/original/linux/
Dstacktrace.h10 extern void save_stack_trace(struct stack_trace *trace,
14 extern void print_stack_trace(struct stack_trace *trace, int spaces);
16 # define save_stack_trace(trace, task, all, skip) do { } while (0) argument
17 # define print_stack_trace(trace) do { } while (0) argument
/external/jdiff/src/jdiff/
DAPIComparator.java71 if (trace) in compareAPIs()
96 if (trace) in compareAPIs()
129 if (trace) in compareAPIs()
151 if (trace) in comparePackages()
178 if (trace) in comparePackages()
202 if (trace) in comparePackages()
232 if (trace) in comparePackages()
244 if (trace) in compareClasses()
308 if (trace) { in compareClasses()
348 if (trace) in compareClasses()
[all …]
/external/junit/src/junit/swingui/
DDefaultFailureDetailView.java37 public void setTrace(String trace) { in setTrace() argument
38 scan(trace); in setTrace()
47 private void scan(String trace) { in scan() argument
49 StringTokenizer st= new StringTokenizer(trace, "\n\r", false); in scan()
89 getModel().setTrace(BaseTestRunner.getFilteredTrace(failure.trace())); in showFailure()

123456