Searched refs:fast (Results 1 - 25 of 99) sorted by relevance

1234

/external/compiler-rt/lib/asan/
H A Dasan_stack.h22 void GetStackTrace(StackTrace *stack, uptr max_s, uptr pc, uptr bp, bool fast);
31 #define GET_STACK_TRACE_WITH_PC_AND_BP(max_s, pc, bp, fast) \
33 GetStackTrace(&stack, max_s, pc, bp, fast)
39 #define GET_STACK_TRACE(max_size, fast) \
41 StackTrace::GetCurrentPc(), GET_CURRENT_FRAME(), fast)
H A Dasan_linux.cc104 void GetStackTrace(StackTrace *stack, uptr max_s, uptr pc, uptr bp, bool fast) { argument
108 fast = false;
110 if (!fast)
H A Dasan_win.cc33 void GetStackTrace(StackTrace *stack, uptr max_s, uptr pc, uptr bp, bool fast) { argument
34 (void)fast;
H A Dasan_mac.cc232 void GetStackTrace(StackTrace *stack, uptr max_s, uptr pc, uptr bp, bool fast) { argument
233 (void)fast;
/external/valgrind/main/exp-sgcheck/tests/
H A Dbad_percentify.stdout.exp1 translate: fast SP updates identified: 0 ( --%)
/external/v8/test/mjsunit/
H A Delements-kind.js46 fast_smi_only : 'fast smi only elements',
47 fast : 'fast elements',
48 fast_double : 'fast double elements',
63 if (%HasFastElements(obj)) return elements_kind.fast;
100 expected = elements_kind.fast;
106 assertKind(elements_kind.fast, me);
109 assertKind(elements_kind.fast, me);
130 assertKind(elements_kind.fast, you);
182 assertKind(elements_kind.fast,
[all...]
/external/jmonkeyengine/engine/src/networking/com/jme3/network/
H A DNetwork.java58 * Creates a Server that will utilize both reliable and fast
68 * Creates a Server that will utilize both reliable and fast
78 * Creates a named and versioned Server that will utilize both reliable and fast
87 * @param udpPort The port upon which the UDP hosting will listen for new 'fast' UDP
88 * messages. Set to -1 if 'fast' traffic should go over TCP. This will
93 UdpKernel fast = udpPort == -1 ? null : new UdpKernel(udpPort);
96 return new DefaultServer( gameName, version, reliable, fast );
119 * using both reliable and fast transports.
128 * using both reliable and fast transports.
137 * using both reliable and fast transport
[all...]
/external/libgsm/src/
H A Dgsm_option.c36 result = r->fast;
37 if (val) r->fast = !!*val;
H A Dshort_term.c361 # define FILTER (* (S->fast \
405 # define FILTER (* (S->fast \
H A Dlpc.c334 if (S->fast) Fast_Autocorrelation (s, L_ACF );
/external/compiler-rt/BlocksRuntime/tests/
H A Dmakefile25 fast:
26 grep CONFIG *.[cmCM] | $(TFR) -fast $(CCDIR) --
32 grep CONFIG *.[cmCM] | $(TFR) -clang -fast --
35 grep CONFIG *.[cmCM] | $(TFR) -fast --
/external/quake/quake/src/WinQuake/
H A Dwq.bat2 if x%1==xfast goto fast
12 echo wq fast: maximum speed, but doesn't work on all systems
24 :fast label
/external/openssl/crypto/des/times/
H A Dusparc.cc1 solaris 2.5.1 usparc 167mhz?? - SC4.0 cc -fast -Xa -xO5
3 For the ultra sparc, SunC 4.0 cc -fast -Xa -xO5, running 'des_opts'
/external/qemu/distrib/sdl-1.2.15/acinclude/
H A Dltoptions.m483 _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install],
268 # implement the --enable-fast-install flag, and support the `fast-install'
269 # and `disable-fast-install' LT_INIT options.
273 AC_ARG_ENABLE([fast-install],
274 [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@],
275 [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])],
296 [Whether or not to optimize for fast installation])dnl
299 LT_OPTION_DEFINE([LT_INIT], [fast
[all...]
/external/compiler-rt/lib/msan/
H A Dmsan.h68 bool fast);
H A Dmsan.cc168 bool fast) {
169 if (!fast) {
167 GetStackTrace(StackTrace *stack, uptr max_s, uptr pc, uptr bp, bool fast) argument
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
H A DDefaultClient.java90 public DefaultClient( String gameName, int version, Connector reliable, Connector fast, argument
94 setPrimaryConnectors( reliable, fast, connectorFactory );
97 protected void setPrimaryConnectors( Connector reliable, Connector fast, ConnectorFactory connectorFactory ) argument
108 if( fast != null ) {
109 channels.add(new ConnectorAdapter(fast, dispatcher, dispatcher, false));
H A DDefaultServer.java89 public DefaultServer( String gameName, int version, Kernel reliable, Kernel fast )
99 if( fast != null ) {
100 fastAdapter = new KernelAdapter( this, fast, dispatcher, false );
531 // fast will be cleaned up as a side-effect
562 + ", fast=" + channels[CH_UNRELIABLE] + " ]";
/external/skia/legacy/src/core/
H A DSkPictureRecord.cpp322 bool fast = !paint.isVerticalText() && paint.canComputeFastBounds(); local
324 addDraw(fast ? DRAW_TEXT_TOP_BOTTOM : DRAW_TEXT);
329 if (fast) {
360 bool fast = canUseDrawH && fastBounds; local
362 if (fast) {
379 if (fast) {
407 bool fast = !paint.isVerticalText() && paint.canComputeFastBounds();
409 addDraw(fast ? DRAW_POS_TEXT_H_TOP_BOTTOM : DRAW_POS_TEXT_H);
417 if (fast) {
/external/skia/src/core/
H A DSkPictureRecord.cpp129 0, // DRAW_POS_TEXT_TOP_BOTTOM, // fast variant of DRAW_POS_TEXT
131 0, // DRAW_POS_TEXT_H_TOP_BOTTOM, // fast variant of DRAW_POS_TEXT_H
137 0, // DRAW_TEXT_TOP_BOTTOM, // fast variant of DRAW_TEXT
550 bool fast = !paint.isVerticalText() && paint.canComputeFastBounds(); local
552 addDraw(fast ? DRAW_TEXT_TOP_BOTTOM : DRAW_TEXT);
558 if (fast) {
589 bool fast = canUseDrawH && fastBounds; local
591 if (fast) {
609 if (fast) {
637 bool fast
[all...]
/external/skia/bench/
H A DMathBench.cpp324 FloorBench(void* param, bool fast) : INHERITED(param), fFast(fast) { argument
331 if (fast) {
/external/ceres-solver/internal/ceres/
H A Dgenerate_eliminator_specialization.py1 // Ceres Solver - A fast non-linear least squares minimizer
/external/ceres-solver/jni/
H A DApplication.mk1 # Ceres Solver - A fast non-linear least squares minimizer
/external/libgsm/inc/
H A Dprivate.h37 char fast; /* only used if FAST */ member in struct:gsm_state
/external/llvm/
H A Dtblgen-rules.mk115 $(call transform-td-to-out,fast-isel)

Completed in 459 milliseconds

1234