HomeSort by relevance Sort by last modified time
    Searched refs:cond (Results 126 - 150 of 1671) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationDataBuilder.java 200 ConditionalCE32 cond = getConditionalCE32ForCE32(oldCE32); local
201 cond.builtCE32 = Collation.NO_CE32;
202 cond.ce32 = ce32;
205 ConditionalCE32 cond; local
213 cond = getConditionalCE32(index);
215 cond = getConditionalCE32ForCE32(oldCE32);
216 cond.builtCE32 = Collation.NO_CE32;
223 // invariant: context > cond.context
224 int next = cond.next;
226 // Append a new ConditionalCE32 after cond
430 ConditionalCE32 cond = new ConditionalCE32(context, ce32); local
583 ConditionalCE32 cond = getConditionalCE32(index); \/\/ the last ConditionalCE32 so far local
754 ConditionalCE32 cond = src.getConditionalCE32ForCE32(ce32); local
1013 ConditionalCE32 cond = getConditionalCE32ForCE32(ce32); local
1306 ConditionalCE32 cond = builder.getConditionalCE32ForCE32(ce32); local
    [all...]
  /external/v8/src/arm/
macro-assembler-arm.h 99 static int CallSize(Register target, Condition cond = al);
100 int CallSize(Address target, RelocInfo::Mode rmode, Condition cond = al);
103 Condition cond = al);
106 void Jump(Register target, Condition cond = al);
107 void Jump(Address target, RelocInfo::Mode rmode, Condition cond = al);
108 void Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond = al);
109 void Call(Register target, Condition cond = al);
111 Condition cond = al,
114 TypeFeedbackId ast_id = TypeFeedbackId::None(), Condition cond = al,
119 Condition cond = al)
    [all...]
  /external/compiler-rt/lib/tsan/dd/
dd_interceptors.cc 164 uptr cond = atomic_load(p, memory_order_acquire); local
165 if (!force && cond != 0)
166 return (pthread_cond_t*)cond;
169 if (atomic_compare_exchange_strong(p, &cond, (uptr)newcond,
173 return (pthread_cond_t*)cond;
179 pthread_cond_t *cond = init_cond(c, true); local
180 return REAL(pthread_cond_init)(cond, a);
185 pthread_cond_t *cond = init_cond(c); local
188 int res = REAL(pthread_cond_wait)(cond, m);
196 pthread_cond_t *cond = init_cond(c) local
206 pthread_cond_t *cond = init_cond(c); local
212 pthread_cond_t *cond = init_cond(c); local
218 pthread_cond_t *cond = init_cond(c); local
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
nuances.rb 72 @init { @cond = true }
75 attr_accessor :cond
82 : ( { @cond }? NAME
83 | {!@cond }? NAME WS+ NAME
109 parser.cond = false
116 parser.cond = false
  /external/clang/test/Sema/
switch.c 36 int cond; local
37 switch (cond) {
43 switch(cond) {
49 switch (cond) {
54 switch (cond) {
60 switch (cond) {
  /external/mesa3d/src/vulkan/wsi/
wsi_common_queue.h 34 pthread_cond_t cond; member in struct:wsi_queue
60 ret = pthread_cond_init(&queue->cond, &condattr);
72 pthread_cond_destroy(&queue->cond);
86 pthread_cond_destroy(&queue->cond);
97 pthread_cond_signal(&queue->cond);
132 ret = pthread_cond_timedwait(&queue->cond, &queue->mutex, &abstime);
  /art/test/450-checker-types/src/
Main.java 34 public int $inline$h(boolean cond) {
35 Super obj = (cond ? this : null);
601 private void updateNodesInTheSameBlockAsPhi(boolean cond) {
603 if (cond) {
647 private SuperInterface getWiderType(boolean cond, Interface a, OtherInterface b) {
648 return cond ? a : b;
660 private void testInlinerWidensReturnType(boolean cond, Interface a, OtherInterface b) {
661 getWiderType(cond, a, b).superInterfaceMethod();
691 public void testThisArgumentMoreSpecific(boolean cond) {
695 ((Super) obj).$inline$h(cond);
    [all...]
  /external/skia/include/core/
SkTypes.h 84 #define SkASSERT_RELEASE(cond) \
85 SkREQUIRE_SEMICOLON_AFTER(if (!(cond)) { SK_ABORT(#cond); } )
88 #define SkASSERT(cond) \
89 SkREQUIRE_SEMICOLON_AFTER(if (!(cond)) { SK_ABORT("assert(" #cond ")"); })
90 #define SkASSERTF(cond, fmt, ...) \
91 SkREQUIRE_SEMICOLON_AFTER(if (!(cond)) { \
93 SK_ABORT("assert(" #cond ")"); \
101 #define SkAssertResult(cond) SkASSERT(cond
    [all...]
  /art/runtime/interpreter/mterp/arm64/
fcmp.S 1 %default {"wide":"", "r1":"s1", "r2":"s2", "cond":"lt"}
15 cneg w0, w0, $cond
  /external/javassist/src/main/javassist/compiler/ast/
CondExpr.java 24 public CondExpr(ASTree cond, ASTree thenp, ASTree elsep) {
25 super(cond, new ASTList(thenp, new ASTList(elsep)));
  /external/mesa3d/src/compiler/nir/
nir_search.h 79 bool (*cond)(nir_alu_instr *instr, unsigned src, member in struct:__anon27476
113 bool (*cond)(nir_alu_instr *instr); member in struct:__anon27479
  /external/mesa3d/src/gallium/drivers/r300/compiler/tests/
unit_test.c 56 void test_check(struct test_result * result, int cond)
59 if (cond) {
  /external/v8/src/compiler/
select-lowering.cc 27 Node* cond = node->InputAt(0); local
32 Diamond d(graph(), common(), cond, p.hint()); local
  /external/valgrind/drd/tests/
pth_uninitialized_cond.stderr.exp 4 condition variable has not been initialized: cond 0x........
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/cc_hash_table_map_/
entry_list_fn_imps.hpp 74 cond_dealtor_t cond(p_e);
78 cond.set_no_action();
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/cc_hash_table_map_/
entry_list_fn_imps.hpp 74 cond_dealtor_t cond(p_e);
78 cond.set_no_action();
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/cc_hash_table_map_/
entry_list_fn_imps.hpp 74 cond_dealtor_t cond(p_e);
78 cond.set_no_action();
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/cc_hash_table_map_/
entry_list_fn_imps.hpp 74 cond_dealtor_t cond(p_e);
78 cond.set_no_action();
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/cc_hash_table_map_/
entry_list_fn_imps.hpp 74 cond_dealtor_t cond(p_e);
78 cond.set_no_action();
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/cc_hash_table_map_/
entry_list_fn_imps.hpp 74 cond_dealtor_t cond(p_e);
78 cond.set_no_action();
  /art/test/570-checker-select/src/
Main.java 30 /// CHECK: <<Cond:z\d+>> ParameterValue
31 /// CHECK: Select [{{i\d+}},{{i\d+}},<<Cond>>]
35 /// CHECK: <<Cond:z\d+>> ParameterValue
36 /// CHECK: Select [{{i\d+}},{{i\d+}},<<Cond>>]
39 public static int BoolCond_IntVarVar(boolean cond, int x, int y) {
44 return cond ? x : y;
56 /// CHECK: <<Cond:z\d+>> ParameterValue
57 /// CHECK: Select [{{i\d+}},{{i\d+}},<<Cond>>]
61 /// CHECK: <<Cond:z\d+>> ParameterValue
62 /// CHECK: Select [{{i\d+}},{{i\d+}},<<Cond>>]
    [all...]
  /external/clang/test/CodeGen/
conditional-gnu-ext.c 32 _Complex int cond; local
  /external/clang/test/SemaCXX/
return-stack-addr.cpp 63 int* ret_conditional(bool cond) {
66 return cond ? &x : &y; // expected-warning {{address of stack memory}}
69 int* ret_conditional_rhs(int *x, bool cond) {
71 return cond ? x : &y; // expected-warning {{address of stack memory}}
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_broadcast/
1-1.c 10 * variable cond.
25 pthread_cond_t cond; member in struct:testdata
45 fprintf(stderr, "[Thread 0x%p] is waiting for the cond\n",
47 rc = pthread_cond_wait(&td.cond, &td.mutex);
74 if (pthread_cond_init(&td.cond, NULL) != 0) {
75 fprintf(stderr, "Fail to initialize cond\n");
104 rc = pthread_cond_broadcast(&td.cond);
2-1.c 26 pthread_cond_t cond; member in struct:testdata
46 fprintf(stderr, "[Thread 0x%p] is waiting for the cond\n",
48 rc = pthread_cond_wait(&td.cond, &td.mutex);
83 if (pthread_cond_init(&td.cond, NULL) != 0) {
84 fprintf(stderr, "Fail to initialize cond\n");
110 rc = pthread_cond_broadcast(&td.cond);

Completed in 1598 milliseconds

1 2 3 4 56 7 8 91011>>