HomeSort by relevance Sort by last modified time
    Searched defs:USE (Results 1 - 15 of 15) sorted by null

  /external/clang/test/CodeGen/
dllimport.c 10 #define USEVAR(var) int JOIN(use, __LINE__)() { return var; }
11 #define USE(func) void JOIN(use, __LINE__)() { func(); }
65 USE(inlineFunc)
74 USE(noinline)
75 USE(alwaysInline)
81 USE(redecl1)
88 USE(redecl2)
93 USE(redecl3)
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
xm_tri.c 10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
981 #define USE(triFunc) \
989 #define USE(triFunc) return triFunc
995 * Return pointer to line drawing function, or NULL if we should use a
1037 USE(smooth_TRUECOLOR_z_triangle);
1039 USE(smooth_8A8B8G8R_z_triangle);
1041 USE(smooth_8A8R8G8B_z_triangle);
1043 USE(smooth_8R8G8B_z_triangle);
1045 USE(smooth_8R8G8B24_z_triangle)
    [all...]
  /external/mesa3d/src/mesa/drivers/x11/
xm_tri.c 10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
981 #define USE(triFunc) \
989 #define USE(triFunc) return triFunc
995 * Return pointer to line drawing function, or NULL if we should use a
1037 USE(smooth_TRUECOLOR_z_triangle);
1039 USE(smooth_8A8B8G8R_z_triangle);
1041 USE(smooth_8A8R8G8B_z_triangle);
1043 USE(smooth_8R8G8B_z_triangle);
1045 USE(smooth_8R8G8B24_z_triangle)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_lines.c 10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
202 #define USE(lineFunc) \
211 #define USE(lineFunc) swrast->Line = lineFunc
218 * Determine which line drawing function to use given the current
242 USE(general_line);
249 USE(general_line);
251 USE(rgba_line);
258 USE(simple_no_z_rgba_line);
262 USE(_swrast_feedback_line)
    [all...]
s_triangle.c 10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
363 /* Isn't it necessary to use FixedFloor below?? */ \
380 /* Isn't it necessary to use FixedFloor below?? */ \
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_lines.c 10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
202 #define USE(lineFunc) \
211 #define USE(lineFunc) swrast->Line = lineFunc
218 * Determine which line drawing function to use given the current
242 USE(general_line);
249 USE(general_line);
251 USE(rgba_line);
258 USE(simple_no_z_rgba_line);
262 USE(_swrast_feedback_line)
    [all...]
s_triangle.c 10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
363 /* Isn't it necessary to use FixedFloor below?? */ \
380 /* Isn't it necessary to use FixedFloor below?? */ \
    [all...]
  /external/chromium_org/third_party/WebKit/Source/
config.h 41 /* USE() - use a particular third-party library or optional OS service */
42 #define USE(WTF_FEATURE) (defined WTF_USE_##WTF_FEATURE && WTF_USE_##WTF_FEATURE)
121 // We want to use std::min and std::max.
  /external/chromium_org/v8/src/base/
macros.h 2 // Use of this source code is governed by a BSD-style license that can be
19 // use 0 or NULL, which causes a problem with the compiler warnings
21 // Here we simply use the non-zero value 4, which seems to work.
29 // (although not all) pointers. Therefore, you should use arraysize
40 // You should only use ARRAYSIZE_UNSAFE on statically allocated arrays.
70 // definition of arraysize() below, so we have to use the unsafe version for
78 // used in defining new arrays, for example. If you use arraysize on
83 // cases, you have to use the unsafe ARRAYSIZE_UNSAFE() macro below. This is
91 // use its type.
98 // its part, can't decide which to use (another mystery). Matching o
    [all...]
  /external/clang/test/CodeGenCXX/
dllimport-members.cpp 20 #define USE(func) void UNIQ(use)() { func(); }
21 #define USEMV(cls, var) int UNIQ(use)() { return ref(cls::var); }
23 #define USESPECIALS(cls) void UNIQ(use)() { useSpecials<cls>(); }
625 void UNIQ(use)() { new ImportAlloc(); } function
631 void UNIQ(use)() { new ImportAlloc[1]; } function
637 void UNIQ(use)(ImportAlloc* ptr) { delete ptr; } function
643 void UNIQ(use)(ImportAlloc* ptr) { delete[] ptr; } function
    [all...]
dllexport.cpp 21 #define USEVAR(var) int UNIQ(use)() { return var; }
22 #define USE(func) void UNIQ(use)() { func(); }
23 #define USEMEMFUNC(class, func) void (class::*UNIQ(use)())() { return &class::func; }
359 USE(exportedFuncTmpl<ImplicitInst_Exported>)
    [all...]
dllimport.cpp 8 // CHECK-NOT doesn't play nice with CHECK-DAG, so use separate run lines.
25 #define USEVARTYPE(type, var) type UNIQ(use)() { return var; }
27 #define USE(func) void UNIQ(use)() { func(); }
28 #define USEMEMFUNC(class, func) void (class::*UNIQ(use)())() { return &class::func; }
29 #define USECLASS(class) void UNIQ(USE)() { class x; }
30 #define USECOPYASSIGN(class) class& (class::*UNIQ(use)())(class&) { return &class::operator=; }
31 #define USEMOVEASSIGN(class) class& (class::*UNIQ(use)())(class&&) { return &class::operator=; }
95 USE(inlineStaticLocalsFunc);
104 USE(initializationFunc)
295 void UNIQ(use)() { ::operator new(42); } function
    [all...]
  /dalvik/dx/etc/
jasmin.jar 
  /external/owasp/sanitizer/lib/htmlparser-1.3/
htmlparser-1.3-with-transitions.jar 
htmlparser-1.3.jar 

Completed in 1681 milliseconds