Searched refs:cond (Results 151 - 175 of 927) sorted by relevance

1234567891011>>

/external/selinux/libsepol/include/sepol/policydb/
H A Davrule_block.h37 cond_list_t * cond);
/external/tensorflow/tensorflow/cc/ops/
H A Dwhile_loop.h25 // Function that takes cond graph inputs and returns cond graph boolean output.
42 // * cond: a function that builds the condition graph of the loop. Takes the
66 const CondGraphBuilderFn& cond,
/external/vboot_reference/firmware/lib/include/
H A Dvboot_common.h20 #define _BA1_(cond, line) \
21 extern int __build_assertion_ ## line[1 - 2*!(cond)] \
24 #define BUILD_ASSERT(cond) _BA0_(cond, __LINE__)
/external/fio/
H A Dmutex.c24 pthread_cond_destroy(&mutex->cond);
39 int cond_init_pshared(pthread_cond_t *cond) argument
57 ret = pthread_cond_init(cond, &cattr);
96 int mutex_cond_init_pshared(pthread_mutex_t *mutex, pthread_cond_t *cond) argument
104 ret = cond_init_pshared(cond);
118 ret = mutex_cond_init_pshared(&mutex->lock, &mutex->cond);
179 ret = pthread_cond_timedwait(&mutex->cond, &mutex->lock, &t);
219 pthread_cond_wait(&mutex->cond, &mutex->lock);
241 pthread_cond_signal(&mutex->cond);
/external/mesa3d/src/amd/addrlib/core/
H A Daddrcommon.h192 #define ADDR_INFO(cond, a) \
193 { if (!(cond)) { ADDR_PRNT(a); } }
208 #define ADDR_WARN(cond, a) \
209 { if (!(cond)) \
228 #define ADDR_EXIT(cond, a) \
229 { if (!(cond)) \
241 #define ADDR_INFO(cond, a)
243 #define ADDR_WARN(cond, a)
245 #define ADDR_EXIT(cond, a)
/external/v8/src/arm64/
H A Dmacro-assembler-arm64-inl.h128 Condition cond) {
131 ConditionalCompareMacro(rn, -operand.ImmediateValue(), nzcv, cond, CCMN);
133 ConditionalCompareMacro(rn, operand, nzcv, cond, CCMP);
141 Condition cond) {
144 ConditionalCompareMacro(rn, -operand.ImmediateValue(), nzcv, cond, CCMP);
146 ConditionalCompareMacro(rn, operand, nzcv, cond, CCMN);
353 void MacroAssembler::B(Condition cond, Label* label) { argument
355 B(label, cond);
413 Condition cond) {
416 DCHECK((cond !
125 Ccmp(const Register& rn, const Operand& operand, StatusFlags nzcv, Condition cond) argument
138 Ccmn(const Register& rn, const Operand& operand, StatusFlags nzcv, Condition cond) argument
411 Cinc(const Register& rd, const Register& rn, Condition cond) argument
421 Cinv(const Register& rd, const Register& rn, Condition cond) argument
445 Cneg(const Register& rd, const Register& rn, Condition cond) argument
457 CzeroX(const Register& rd, Condition cond) argument
468 CmovX(const Register& rd, const Register& rn, Condition cond) argument
481 Cset(const Register& rd, Condition cond) argument
489 Csetm(const Register& rd, Condition cond) argument
497 Csinc(const Register& rd, const Register& rn, const Register& rm, Condition cond) argument
508 Csinv(const Register& rd, const Register& rn, const Register& rm, Condition cond) argument
519 Csneg(const Register& rd, const Register& rn, const Register& rm, Condition cond) argument
572 Fccmp(const FPRegister& fn, const FPRegister& fm, StatusFlags nzcv, Condition cond) argument
601 Fcsel(const FPRegister& fd, const FPRegister& fn, const FPRegister& fm, Condition cond) argument
1604 CompareAndBranch(const Register& lhs, const Operand& rhs, Condition cond, Label* label) argument
[all...]
/external/v8/src/compiler/
H A Dcommon-operator-reducer.cc22 Decision DecideCondition(Node* const cond) { argument
23 switch (cond->opcode()) {
25 Int32Matcher mcond(cond);
29 HeapObjectMatcher mcond(cond);
76 Node* const cond = node->InputAt(0); local
77 // Swap IfTrue/IfFalse on {branch} if {cond} is a BooleanNot and use the input
78 // to BooleanNot as new condition for {branch}. Note we assume that {cond} was
80 // reduction logic). The same applies if {cond} is a Select acting as boolean
82 if (cond->opcode() == IrOpcode::kBooleanNot ||
83 (cond
245 Node* const cond = branch->InputAt(0); local
374 Node* const cond = node->InputAt(0); local
[all...]
H A Ddiamond.h25 Diamond(Graph* g, CommonOperatorBuilder* b, Node* cond, argument
29 branch = graph->NewNode(common->Branch(hint), cond, graph->start());
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt030specialStates.py32 parser.cond = False
41 parser.cond = False
/external/capstone/bindings/ocaml/
H A Dppc.ml14 cond: int; Record field in type:ppc_op_crx
/external/clang/test/Parser/
H A Dwarn-dangling-else.cpp50 void f(bool cond) { argument
52 if (cond)
/external/clang/test/Sema/
H A Darm-layout.c5 #define check(name, cond) int _##name##_check[(cond) ? 1 : -1]
/external/curl/docs/cmdline-opts/
H A Dtime-cond.d1 Long: time-cond
/external/libhevc/common/
H A Dihevc_macros.h37 #define RETURN_IF(cond, retval) if(cond) {return (retval);}
/external/libmpeg2/common/
H A Dicv_macros.h67 #define RETURN_IF(cond, retval) if(cond) {return (retval);}
H A Dimpeg2_macros.h53 #define RETURN_IF(cond, retval) if(cond) {return (retval);}
/external/libopus/celt/
H A Darch.h71 #define celt_assert(cond) {if (!(cond)) {celt_fatal("assertion failed: " #cond);}}
72 #define celt_assert2(cond, message) {if (!(cond)) {celt_fatal("assertion failed: " #cond "\n" message);}}
74 #define celt_assert(cond)
75 #define celt_assert2(cond, message)
/external/libusb/libusb/os/
H A Dthreads_posix.c40 int usbi_cond_timedwait(pthread_cond_t *cond, argument
57 return pthread_cond_timedwait(cond, mutex, &timeout);
/external/ltp/testcases/kernel/sched/nptl/
H A Dnptl01.c102 void call_cond_init(pthread_cond_t * cond, char *buf, size_t buf_len) argument
106 if ((ret = pthread_cond_init(cond, NULL)) != 0) {
112 void call_cond_wait(pthread_cond_t * cond, pthread_mutex_t * mutex, argument
117 if ((ret = pthread_cond_wait(cond, mutex)) != 0) {
123 void call_cond_signal(pthread_cond_t * cond, char *buf, size_t buf_len) argument
127 if ((ret = pthread_cond_signal(cond)) != 0) {
133 void do_timedwait(pthread_cond_t * cond, pthread_mutex_t * mutex, argument
151 if ((ret = pthread_cond_timedwait(cond, mutex, &ts)) != ETIMEDOUT) {
/external/selinux/checkpolicy/
H A Dmodule_compiler.h76 * expression as 'cond'. If the conditional does not exist then
78 cond_list_t *get_current_cond_list(cond_list_t * cond);
81 void append_cond_list(cond_list_t * cond);
/external/syslinux/gnu-efi/gnu-efi-3.0/gnuefi/
H A Dreloc_ia64.S131 (Pnull) br.cond.sptk.few apply_relocs
165 (Prel) br.cond.sptk.few apply_REL64
169 (Pnone) br.cond.sptk.few apply_relocs
170 (Prel) br.cond.sptk.few apply_REL64
171 (Pfptr) br.cond.sptk.few apply_FPTR64
178 (Pmore) br.cond.sptk.few apply_loop
189 br.cond.sptk.few apply_relocs
219 br.cond.sptk.few apply_relocs
/external/tensorflow/tensorflow/contrib/signal/python/ops/
H A Dutil_ops.py64 cond = lambda _, b: math_ops.greater(b, array_ops.zeros_like(b))
66 a, b = control_flow_ops.while_loop(cond, body, [a, b], back_prop=False)
/external/valgrind/VEX/priv/
H A Ds390_defs.h59 s390_cc_invert(s390_cc_t cond) argument
61 return S390_CC_ALWAYS - cond;
/external/v8/src/arm/
H A Dmacro-assembler-arm.cc34 void MacroAssembler::Jump(Register target, Condition cond) { argument
35 bx(target, cond);
40 Condition cond) {
42 mov(pc, Operand(target, rmode), LeaveCC, cond);
47 Condition cond) {
49 Jump(reinterpret_cast<intptr_t>(target), rmode, cond); local
54 Condition cond) {
58 Jump(reinterpret_cast<intptr_t>(code.location()), rmode, cond); local
62 int MacroAssembler::CallSize(Register target, Condition cond) { argument
67 void MacroAssembler::Call(Register target, Condition cond) { argument
39 Jump(intptr_t target, RelocInfo::Mode rmode, Condition cond) argument
46 Jump(Address target, RelocInfo::Mode rmode, Condition cond) argument
53 Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond) argument
77 CallSize( Address target, RelocInfo::Mode rmode, Condition cond) argument
86 CallStubSize( CodeStub* stub, TypeFeedbackId ast_id, Condition cond) argument
92 Call(Address target, RelocInfo::Mode rmode, Condition cond, TargetAddressStorageMode mode) argument
133 CallSize(Handle<Code> code, RelocInfo::Mode rmode, TypeFeedbackId ast_id, Condition cond) argument
142 Call(Handle<Code> code, RelocInfo::Mode rmode, TypeFeedbackId ast_id, Condition cond, TargetAddressStorageMode mode) argument
156 Call(reinterpret_cast<Address>(code.location()), rmode, cond, mode); local
194 Ret(Condition cond) argument
199 Drop(int count, Condition cond) argument
205 Drop(Register count, Condition cond) argument
209 Ret(int drop, Condition cond) argument
215 Swap(Register reg1, Register reg2, Register scratch, Condition cond) argument
247 Move(Register dst, Register src, Condition cond) argument
253 Move(SwVfpRegister dst, SwVfpRegister src, Condition cond) argument
260 Move(DwVfpRegister dst, DwVfpRegister src, Condition cond) argument
296 Mls(Register dst, Register src1, Register src2, Register srcA, Condition cond) argument
309 And(Register dst, Register src1, const Operand& src2, Condition cond) argument
328 Ubfx(Register dst, Register src1, int lsb, int width, Condition cond) argument
2698 Assert(Condition cond, BailoutReason reason) argument
2726 Check(Condition cond, BailoutReason reason) argument
3802 EmitCondition(Condition cond) argument
[all...]
/external/strace/
H A Dnetlink_inet_diag.c66 struct inet_diag_hostcond cond; local
68 if (len < sizeof(cond)) {
72 if (umove_or_printaddr(tcp, addr, &cond))
75 PRINT_FIELD_XVAL("{", cond, family, addrfams, "AF_???");
76 PRINT_FIELD_U(", ", cond, prefix_len);
77 PRINT_FIELD_U(", ", cond, port);
79 if (len > sizeof(cond)) {
81 decode_inet_addr(tcp, addr + sizeof(cond),
82 len - sizeof(cond), cond
[all...]

Completed in 1708 milliseconds

1234567891011>>