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

1 2 3 45 6 7 8 91011>>

  /hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/rpc_inc/
debug.h 61 #define FAILIF(cond, msg...) do { \
62 if (__builtin_expect (cond, 0)) { \
  /hardware/qcom/gps/msm8909/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/rpc_inc/
debug.h 61 #define FAILIF(cond, msg...) do { \
62 if (__builtin_expect (cond, 0)) { \
  /hardware/qcom/gps/msm8994/loc_api/libloc_api-rpc/inc/
debug.h 49 #define FAILIF(cond, msg...) do { \
50 if (__builtin_expect (cond, 0)) { \
  /hardware/qcom/gps/msm8994/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/rpc_inc/
debug.h 61 #define FAILIF(cond, msg...) do { \
62 if (__builtin_expect (cond, 0)) { \
  /hardware/qcom/gps/msm8996/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/rpc_inc/
debug.h 61 #define FAILIF(cond, msg...) do { \
62 if (__builtin_expect (cond, 0)) { \
  /external/v8/src/arm/
assembler-arm.h 793 void b(int branch_offset, Condition cond = al);
794 void bl(int branch_offset, Condition cond = al);
796 void blx(Register target, Condition cond = al); // v5 and above
797 void bx(Register target, Condition cond = al); // v5 and above, plus v4t
800 void b(Label* L, Condition cond = al);
801 void b(Condition cond, Label* L) { b(L, cond); }
802 void bl(Label* L, Condition cond = al);
803 void bl(Condition cond, Label* L) { bl(L, cond); }
    [all...]
  /external/vixl/tools/
generate_tests.py 45 - test/aarch32/test-assembler-cond-rd-rn-immediate-a32.cc
46 - test/aarch32/test-assembler-cond-rd-rn-rm-a32.cc
47 - test/aarch32/test-assembler-cond-rd-rn-rm-q-a32.cc
48 - test/aarch32/test-assembler-cond-rd-rn-rm-ge-a32.cc
54 $ cat test/aarch32/traces/sim-cond-rd-rn-immediate-adc-a32.h
88 test/aarch32/config/cond-rd-rn-immediate-a32.json
89 `-> test/aarch32/test-simulator-cond-rd-rn-immediate-a32.cc
90 `-> test/aarch32/test-assembler-cond-rd-rn-immediate-a32.cc
241 "XXX.cond rd rn rm shift #amount":
246 Condition cond = ...
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndapi.c 54 if (cursor->cond.ds == NULL) {
61 dicinfo = &(cursor->cond.ds->dic[i]);
84 if (cursor->cond.yomi == NULL) {
89 if (cursor->cond.ylen > NJ_MAX_LEN) {
94 if (cursor->cond.operation == NJ_CUR_OP_LINK) {
96 } else if (cursor->cond.kanji != NULL) {
98 if (nj_strlen(cursor->cond.kanji) > NJ_MAX_RESULT_LEN) {
103 switch (cursor->cond.operation) {
112 switch (cursor->cond.mode) {
153 ret = njd_b_search_word(&cursor->cond, loctset)
    [all...]
  /external/vixl/src/aarch32/
macro-assembler-aarch32.cc 500 void MacroAssembler::HandleOutOfBoundsImmediate(Condition cond,
505 mov(cond, tmp, imm & 0xffff);
511 mvn(cond, tmp, ~imm);
517 mvn(cond, tmp, ~imm);
522 mov(cond, tmp, imm & 0xffff);
523 movt(cond, tmp, imm >> 16);
547 Condition cond,
561 ITScope it_scope(this, &cond);
592 sub(cond, scratch, base, sub_pc_offset);
603 add(cond, scratch, base, add_offset)
    [all...]
  /external/clang/test/SemaCXX/
expression-traits.cpp 518 void expr_cond(bool cond)
520 // 5.16 Conditional operator [expr.cond]
530 ASSERT_RVALUE(cond ? throw 1 : (void)0);
531 ASSERT_RVALUE(cond ? (void)0 : throw 1);
532 ASSERT_RVALUE(cond ? throw 1 : 0);
533 ASSERT_RVALUE(cond ? 0 : throw 1);
534 ASSERT_LVALUE(cond ? throw 1 : classLvalue);
535 ASSERT_LVALUE(cond ? classLvalue : throw 1);
540 ASSERT_RVALUE(cond ? (void)1 : (void)0);
541 ASSERT_RVALUE(cond ? throw 1 : throw 0)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/tests/
unit_test.h 43 void test_check(struct test_result * result, int cond);
  /external/valgrind/drd/tests/
pth_cond_destroy_busy.stderr.exp 2 destruction of condition variable being waited upon: cond 0x........
5 cond 0x........ was first observed at:
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue18725.go 11 func panicWhenNot(cond bool) {
12 if cond {
  /prebuilts/go/linux-x86/test/fixedbugs/
issue18725.go 11 func panicWhenNot(cond bool) {
12 if cond {
  /external/regex-re2/re2/
onepass.cc 182 static bool Satisfy(uint32 cond, const StringPiece& context, const char* p) {
184 if (cond & kEmptyAllFlags & ~satisfied)
189 // Apply the capture bits in cond, saving p to the appropriate
191 static void ApplyCaptures(uint32 cond, const char* p,
194 if (cond & (1 << kCapShift << i))
258 uint32 cond = state->action[c]; local
262 if ((cond & kEmptyAllFlags) == 0 || Satisfy(cond, context, p)) {
263 uint32 nextindex = cond >> kIndexShift;
292 if ((cond & kMatchWins) == 0 && (nextmatchcond & kEmptyAllFlags) == 0
360 uint32 cond; member in struct:re2::InstCond
431 uint32 cond = stack[nstack].cond; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/os/
os_thread.h 151 #define pipe_condvar_init(cond) \
152 cnd_init(&(cond))
154 #define pipe_condvar_destroy(cond) \
155 cnd_destroy(&(cond))
157 #define pipe_condvar_wait(cond, mutex) \
158 cnd_wait(&(cond), &(mutex))
160 #define pipe_condvar_signal(cond) \
161 cnd_signal(&(cond))
163 #define pipe_condvar_broadcast(cond) \
164 cnd_broadcast(&(cond))
250 pipe_condvar cond; member in struct:__anon27548
    [all...]
  /external/valgrind/VEX/priv/
guest_s390_helpers.c 1848 ULong cond, cc_op; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
lock_tests.py 311 cond = self.condtype()
314 cond.acquire()
315 cond.acquire()
316 cond.release()
317 cond.release()
319 cond = self.condtype(lock)
320 cond.acquire()
322 cond.release()
324 self.assertFalse(cond.acquire(False))
326 with cond:
    [all...]
  /external/python/cpython2/Lib/test/
lock_tests.py 323 cond = self.condtype()
326 cond.acquire()
327 cond.acquire()
328 cond.release()
329 cond.release()
331 cond = self.condtype(lock)
332 cond.acquire()
334 cond.release()
336 self.assertFalse(cond.acquire(False))
338 with cond
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
lock_tests.py 311 cond = self.condtype()
314 cond.acquire()
315 cond.acquire()
316 cond.release()
317 cond.release()
319 cond = self.condtype(lock)
320 cond.acquire()
322 cond.release()
324 self.assertFalse(cond.acquire(False))
326 with cond
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
lock_tests.py 311 cond = self.condtype()
314 cond.acquire()
315 cond.acquire()
316 cond.release()
317 cond.release()
319 cond = self.condtype(lock)
320 cond.acquire()
322 cond.release()
324 self.assertFalse(cond.acquire(False))
326 with cond
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
lock_tests.py 311 cond = self.condtype()
314 cond.acquire()
315 cond.acquire()
316 cond.release()
317 cond.release()
319 cond = self.condtype(lock)
320 cond.acquire()
322 cond.release()
324 self.assertFalse(cond.acquire(False))
326 with cond
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
lock_tests.py 311 cond = self.condtype()
314 cond.acquire()
315 cond.acquire()
316 cond.release()
317 cond.release()
319 cond = self.condtype(lock)
320 cond.acquire()
322 cond.release()
324 self.assertFalse(cond.acquire(False))
326 with cond
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
yvals.h 58 #define _SCL_SECURE_ALWAYS_VALIDATE(cond) { if (!(cond)) { _ASSERTE((#cond,0)); _SCL_SECURE_INVALID_ARGUMENT_NO_ASSERT; } }
60 #define _SCL_SECURE_ALWAYS_VALIDATE_RANGE(cond) { if (!(cond)) { _ASSERTE((#cond,0)); _SCL_SECURE_OUT_OF_RANGE_NO_ASSERT; } }
62 #define _SCL_SECURE_CRT_VALIDATE(cond,retvalue) { if (!(cond)) { _ASSERTE((#cond,0)); _SCL_SECURE_INVALID_PARAMETER(cond); return (retvalue); }
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationDataBuilder.java 201 ConditionalCE32 cond = getConditionalCE32ForCE32(oldCE32); local
202 cond.builtCE32 = Collation.NO_CE32;
203 cond.ce32 = ce32;
206 ConditionalCE32 cond; local
214 cond = getConditionalCE32(index);
216 cond = getConditionalCE32ForCE32(oldCE32);
217 cond.builtCE32 = Collation.NO_CE32;
224 // invariant: context > cond.context
225 int next = cond.next;
227 // Append a new ConditionalCE32 after cond
431 ConditionalCE32 cond = new ConditionalCE32(context, ce32); local
584 ConditionalCE32 cond = getConditionalCE32(index); \/\/ the last ConditionalCE32 so far local
755 ConditionalCE32 cond = src.getConditionalCE32ForCE32(ce32); local
1014 ConditionalCE32 cond = getConditionalCE32ForCE32(ce32); local
1307 ConditionalCE32 cond = builder.getConditionalCE32ForCE32(ce32); local
    [all...]

Completed in 2229 milliseconds

1 2 3 45 6 7 8 91011>>