HomeSort by relevance Sort by last modified time
    Searched defs:use (Results 51 - 75 of 197) sorted by null

1 23 4 5 6 7 8

  /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>(); }
627 void UNIQ(use)() { new ImportAlloc(); } function
633 void UNIQ(use)() { new ImportAlloc[1]; } function
639 void UNIQ(use)(ImportAlloc* ptr) { delete ptr; } function
645 void UNIQ(use)(ImportAlloc* ptr) { delete[] ptr; } function
    [all...]
mangle-template.cpp 159 void use() { function in namespace:test12
microsoft-abi-vtables-virtual-inheritance.cpp 31 void use(C *obj) { obj->f(); } function
55 void use(D *obj) { obj->h(); } function
103 void use(X *obj) { obj->h(); } function in namespace:Test2
181 void use(Y *obj) { obj->h(); } function in namespace:Test5
246 void use(X *obj) { obj->f(); } function in namespace:Test8
262 void use(Z *obj) { obj->f(); } function in namespace:Test8
284 void use(T *obj) { obj->bar(); } function in namespace:Test8
309 void use(Y *obj) { obj->h(); } function in namespace:Test9
421 void use(T *obj) { obj->f(); } function in namespace:Test9
438 void use(X *obj) { obj->f(); function in namespace:Test10
503 void use(Y *obj) { delete obj; } function in namespace:vdtors
532 void use(U *obj) { delete obj; } function in namespace:vdtors
552 void use(V *obj) { delete obj; } function in namespace:vdtors
568 void use(P *obj) { delete obj; } function in namespace:vdtors
593 void use(R *obj) { delete obj; } function in namespace:vdtors
626 void use(W *obj) { obj->foo(); } function in namespace:return_adjustment
647 void use(T *obj) { obj->foo(); } function in namespace:return_adjustment
669 void use(V *obj) { obj->foo(); } function in namespace:return_adjustment
    [all...]
mangle-ms-templates.cpp 167 void use() { function
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)
309 void UNIQ(use)() { ::operator new(42); } function
    [all...]
  /external/iproute2/ip/
xfrm.h 79 int use; member in struct:xfrm_filter
  /external/libxml2/
HTMLtree.c 410 size_t use; local
433 use = xmlBufUse(buf);
436 ret = xmlBufUse(buf) - use;
    [all...]
buf.c 7 * The new entry point use the xmlBufPtr opaque structure and
48 size_t use; /* The buffer size used */ member in struct:_xmlBuf
62 if (buf->use < INT_MAX) buf->compat_use = buf->use; \
74 if (buf->use != (size_t) buf->compat_use) \
76 buf->use = buf->compat_use;
130 ret->use = 0;
164 ret->use = 0;
210 buf->use = 0;
248 ret->use = size
    [all...]
parserInternals.c 258 "xmlParserInput: cur > base + use problem\n");
260 xmlGenericError(xmlGenericErrorContext,"buffer %x : content %x, cur %d, use %d\n",
277 * Returns -1 as this is an error to use it.
326 * block, but we use it really as an integer to do some
526 * XML constructs only use < 128 chars
694 * XML constructs only use < 128 chars
813 * XML constructs only use < 128 chars
1160 unsigned int use; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vec4.cpp 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
272 int *use = ralloc_array(mem_ctx, int, virtual_grf_count); local
281 use[i] = -1;
295 /* Patches up the use of vars marked for being live across
299 if (use[i] == loop_start) {
300 use[i] = ip;
310 use[reg] = ip;
313 use[reg] = loop_start;
339 this->virtual_grf_use = use;
    [all...]
  /external/v8/src/
hydrogen-escape-analysis.cc 2 // Use of this source code is governed by a BSD-style license that can be
13 HValue* use = it.value(); local
14 if (use->HasEscapingOperandAt(it.index())) {
17 value->Mnemonic(), use->id(), use->Mnemonic(), it.index());
21 if (use->HasOutOfBoundsAccess(size)) {
24 value->Mnemonic(), use->id(), use->Mnemonic(), it.index());
28 int redefined_index = use->RedefinedOperandIndex();
29 if (redefined_index == it.index() && !HasNoEscapingUses(use, size))
    [all...]
  /system/bt/embdrv/sbc/encoder/srce/
sbc_encoder.c 6 * you may not use this file except in compliance with the License.
50 * Derive 2 items from the CRC byte; one is the "use" bit, the other is the "index".
52 * SBC keeps 2 sets of "use" & "index"; derived the current and the previous frame.
54 * The "use" bit is any bit in SBC_PRTC_USE_MASK is set.
88 UINT8 use; member in struct:__anon69234
104 p_last->idx = p_cur->idx; p_last->use = p_cur->use;}
105 #define SBC_PRTC_GETC(ar) {p_cur->use = ar[SBC_PRTC_CRC_IDX] & SBC_PRTC_USE_MASK; \
107 #define SBC_PRTC_CHK_CRC(ar) {SBC_PRTC_C2L();SBC_PRTC_GETC(ar);sbc_prtc_cb.index = (p_cur->use)?SBC_PRTC_CIDX:SBC_PRTC_LIDX;}
182 /* In case of JS processing,check whether to use JS *
    [all...]
  /system/extras/showslab/
showslab.c 28 unsigned long use; /* percent full: total / active */ member in struct:slab_info
129 p->use = 100 * p->nr_active_objs / p->nr_objs;
132 p->use = 0;
239 BUILD_SORT_FUNC(use)
334 "OBJS", "ACTIVE", "USE", "OBJ SIZE", "SLABS",
340 p->nr_objs, p->nr_active_objs, p->use,
  /external/deqp/modules/egl/
teglMemoryStressTests.cpp 8 * you may not use this file except in compliance with the License.
72 MemoryAllocator (EglTestContext& eglTestCtx, EGLDisplay display, EGLConfig config, int seed, ObjectType types, int minWidth, int minHeight, int maxWidth, int maxHeight, bool use);
105 MemoryAllocator::MemoryAllocator (EglTestContext& eglTestCtx, EGLDisplay display, EGLConfig config, int seed, ObjectType types, int minWidth, int minHeight, int maxWidth, int maxHeight, bool use)
118 , m_use (use)
324 bool use; member in struct:deqp::egl::MemoryStressCase::Spec
369 m_testCtx.getLog() << TestLog::Message << "Tests that exhaust memory are disabled, use --deqp-test-oom=enable command line option to enable." << TestLog::EndMessage;
401 m_allocator = new MemoryAllocator(m_eglTestCtx, m_display, m_config, m_seed, m_spec.types, m_spec.minWidth, m_spec.minHeight, m_spec.maxWidth, m_spec.maxHeight, m_spec.use);
483 spec.use = false;
488 // Check small pbuffers 256x256 and use them
497 spec.use = true
    [all...]
  /external/toybox/toys/pending/
route.c 115 int flags, ref, use, metric, mss, win, irtt, items; local
122 (toys.optflags & FLAG_e)? " MSS Window irtt" : "Metric Ref Use");
126 &gate, &flags, &ref, &use, &metric, &mask, &mss, &win, &irtt)) == 11) {
147 else xprintf("%-6d %-2d %7d %s\n", metric, ref, use, iface);
448 int prefixlen, metric, use, refcount, flag, items = 0; local
454 "%-43s%-40s Flags Metric Ref Use Iface\n", "Destination", "Next Hop");
457 &prefixlen, ipv6_src_addr+8, &metric, &use, &refcount, &flag,
478 toybuf, buf2, flag_val, metric, refcount, use, iface);
  /external/v8/src/compiler/
js-inlining.cc 2 // Use of this source code is governed by a BSD-style license that can be
101 // Inline this graph at {call}, use {jsgraph} and its zone to create
254 Node* use = *iter; local
255 switch (use->opcode()) {
257 int index = 1 + OpParameter<int>(use->op());
395 // For now do not inline functions that use their arguments array.
simplified-lowering.cc 2 // Use of this source code is governed by a BSD-style license that can be
26 // operators are interwined. We use a fixpoint calculation to compute both the
45 // During this phase, use the {RepresentationChanger} to insert
56 MachineTypeUnion use : 15; // Union of all usages for the node. member in struct:v8::internal::compiler::RepresentationSelector::NodeInfo
88 VisitNode(node, info->use, NULL);
114 // Enqueue {node} if the {use} contains new information for that node.
116 void Enqueue(Node* node, MachineTypeUnion use = 0) {
126 info->use |= use;
132 if ((info->use & use) != use)
    [all...]
  /art/compiler/dex/
gvn_dead_code_elimination.cc 5 * you may not use this file except in compliance with the License.
190 if (data->vreg_def == v_reg) { // Low word, use prev_value.
198 } else { // High word, use prev_value_high.
278 if (data->vreg_def == v_reg) { // Low word, use prev_value.
284 } else { // High word, use prev_value_high.
418 size_t use = 0u; local
421 if (mir->ssa_rep->uses[use] == old_s_reg) { \
424 mir->ssa_rep->uses[use] = new_s_reg; \
426 DCHECK_EQ(mir->ssa_rep->uses[use + 1], old_s_reg + 1); \
427 mir->ssa_rep->uses[use + 1] = new_s_reg + 1;
    [all...]
  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
OpenGLWatchFaceService.java 5 * you may not use this file except in compliance with the License.
69 * View transformation matrices to use in interactive mode. Converts from world to camera-
74 /** The view transformation matrix to use in ambient mode */
152 // We only draw triangles which all use the same program so we don't need to switch
153 // programs mid-frame. This means we can tell OpenGL to use this program only once
155 triangleProgram.use();
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
OpenGLWatchFaceService.java 5 * you may not use this file except in compliance with the License.
69 * View transformation matrices to use in interactive mode. Converts from world to camera-
74 /** The view transformation matrix to use in ambient mode */
152 // We only draw triangles which all use the same program so we don't need to switch
153 // programs mid-frame. This means we can tell OpenGL to use this program only once
155 triangleProgram.use();
  /development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
OpenGLWatchFaceService.java 5 * you may not use this file except in compliance with the License.
69 * View transformation matrices to use in interactive mode. Converts from world to camera-
74 /** The view transformation matrix to use in ambient mode */
152 // We only draw triangles which all use the same program so we don't need to switch
153 // programs mid-frame. This means we can tell OpenGL to use this program only once
155 triangleProgram.use();
  /external/clang/test/SemaCXX/
conversion-function.cpp 12 return operator float(); // expected-error{{use of undeclared 'operator float'}}
175 (&operator bool())(); // expected-error {{use a typedef to declare a conversion to 'bool (&)()'}}
271 void use() { function in namespace:PR7934
warn-unused-private-field.cpp 61 void use() { function in class:FriendClass
128 int *use = &by_reference_; local
  /external/mesa3d/src/mesa/program/
prog_optimize.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.
490 * Try to remove use of extraneous MOV instructions, to free them up for dead
499 printf("Optimize: Begin remove extra move use\n");
527 * rewritten or we get into some flow-control, eliminating the use of
590 printf("Optimize: End remove extra move use.\n");
614 enum inst_use use; local
629 use = find_next_use(prog, i+1, index, mask);
630 if (use == WRITE || use == END
    [all...]
  /external/tcpdump/
print-icmp6.c 5 * Redistribution and use in source and binary forms, with or without
11 * features or use of this software display the following acknowledgement:
339 /* display cosmetics: print the packet length for printer that use the vflag now */
1251 struct rr_pco_use *use; local
    [all...]

Completed in 380 milliseconds

1 23 4 5 6 7 8