Searched refs:exclusive (Results 1 - 25 of 95) sorted by relevance

1234

/external/toolchain-utils/
H A Dlock_machine_test.py19 file_lock_machine.Machine(machine, auto=True).Lock(exclusive=True)
40 self.assertTrue(mach.Lock(exclusive=True))
41 self.assertTrue(mach.Unlock(exclusive=True))
45 self.assertTrue(mach.Lock(exclusive=True))
46 self.assertTrue(mach.Unlock(exclusive=True))
51 self.assertTrue(mach.Lock(exclusive=False))
53 self.assertTrue(mach.Unlock(exclusive=False))
54 self.assertTrue(mach.Lock(exclusive=True))
55 self.assertTrue(mach.Unlock(exclusive=True))
59 self.assertTrue(mach.Lock(exclusive
[all...]
H A Dfile_lock_machine.py65 self.exclusive = desc['exclusive']
72 self.exclusive = False
79 return self.counter or self.exclusive
83 'Owner: %s' % self.owner, 'Exclusive: %s' % self.exclusive,
124 file_lock.getDescription().exclusive,
160 if self._description.exclusive and self._description.auto:
199 def NonBlockingLock(self, exclusive, reason=''):
201 if lock.exclusive:
207 if exclusive
[all...]
/external/freetype/src/gxvalid/
H A Dgxvfeat.h49 FT_Bool exclusive; member in struct:GXV_Feature_RegistryRec_
H A Dgxvfeat.c84 FT_Bool exclusive,
124 if ( exclusive != gxv_feat_registry[feature].exclusive )
126 GXV_TRACE(( "exclusive flag %d differs from predefined value\n",
127 exclusive ));
165 FT_Bool exclusive,
178 /* If we have exclusive setting, the setting should be odd. */
179 if ( exclusive && ( setting & 1 ) == 0 )
203 FT_Bool exclusive; local
226 exclusive
82 gxv_feat_registry_validate( FT_UShort feature, FT_UShort nSettings, FT_Bool exclusive, GXV_Validator gxvalid ) argument
163 gxv_feat_setting_validate( FT_Bytes table, FT_Bytes limit, FT_Bool exclusive, GXV_Validator gxvalid ) argument
[all...]
H A Dgxvfgen.c91 char exclusive; member in struct:GX_Feature_RegistryRec_
472 featreg_table[i].exclusive ? 1 : 0,
/external/tensorflow/tensorflow/core/kernels/
H A Dscan_ops.h31 const bool reverse, const bool exclusive) {
39 To32Bit(in).reverse(dims).scan(1, reducer, exclusive).reverse(dims);
29 operator ()(const Device& d, typename TTypes<T, 3>::ConstTensor in, typename TTypes<T, 3>::Tensor out, const Reducer& reducer, const bool reverse, const bool exclusive) argument
/external/javassist/src/main/javassist/bytecode/
H A DCodeIterator.java448 private int insert0(int pos, byte[] code, boolean exclusive) argument
456 pos = insertGapAt(pos, len, exclusive).position;
505 * Inserts an exclusive gap
524 * Inserts an exclusive gap in front of the instruction at the given
561 * Inserts an inclusive or exclusive gap in front of the instruction
569 * then it is included within that block. If the gap is exclusive,
588 * @param exclusive true if exclusive, otherwise false.
592 public Gap insertGapAt(int pos, int length, boolean exclusive) argument
596 * cursorPos indicates the next bytecode whichever exclusive i
796 insertGapCore0(byte[] code, int where, int gapLength, boolean exclusive, ExceptionTable etable, CodeAttribute ca) argument
817 insertGapCore1(byte[] code, int where, int gapLength, boolean exclusive, ExceptionTable etable, CodeAttribute ca) argument
853 insertGap2(byte[] code, int where, int gapLength, int endPos, byte[] newcode, boolean exclusive) argument
973 newOffset(int i, int offset, int where, int gapLength, boolean exclusive) argument
1014 shiftPc(int where, int gapLength, boolean exclusive) argument
1086 insertGapCore0w(byte[] code, int where, int gapLength, boolean exclusive, ExceptionTable etable, CodeAttribute ca, Gap newWhere) argument
1110 insertGap2w(byte[] code, int where, int gapLength, boolean exclusive, ArrayList jumps, Pointers ptrs) argument
1270 shift(int where, int gapLength, boolean exclusive) argument
1275 shiftOffset(int i, int offset, int where, int gapLength, boolean exclusive) argument
1347 shift(int where, int gapLength, boolean exclusive) argument
1435 shift(int where, int gapLength, boolean exclusive) argument
1458 shift(int where, int gapLength, boolean exclusive) argument
[all...]
H A DExceptionTable.java251 void shiftPc(int where, int gapLength, boolean exclusive) { argument
255 e.startPc = shiftPc(e.startPc, where, gapLength, exclusive);
256 e.endPc = shiftPc(e.endPc, where, gapLength, exclusive);
257 e.handlerPc = shiftPc(e.handlerPc, where, gapLength, exclusive);
262 boolean exclusive) {
263 if (pc > where || (exclusive && pc == where))
261 shiftPc(int pc, int where, int gapLength, boolean exclusive) argument
H A DStackMap.java375 void shiftPc(int where, int gapSize, boolean exclusive) argument
378 new Shifter(this, where, gapSize, exclusive).visit();
383 private boolean exclusive; field in class:StackMap.Shifter
385 public Shifter(StackMap smt, int where, int gap, boolean exclusive) { argument
389 this.exclusive = exclusive;
393 if (exclusive ? where <= offset : where < offset)
H A DLineNumberAttribute.java172 void shiftPc(int where, int gapLength, boolean exclusive) { argument
177 if (pc > where || (exclusive && pc == where))
H A DStackMapTable.java788 void shiftPc(int where, int gapSize, boolean exclusive) argument
791 new Shifter(this, where, gapSize, exclusive).doit();
799 private boolean exclusive; field in class:StackMapTable.Shifter
801 public Shifter(StackMapTable smt, int where, int gap, boolean exclusive) { argument
808 this.exclusive = exclusive;
829 if (exclusive)
876 if (exclusive)
/external/autotest/client/cros/
H A Dkernel_config.py96 def is_exclusive(self, exclusive):
100 @param exclusive: hash containing "missing", "builtin", "module",
106 for name in exclusive['missing']:
108 for name in exclusive['builtin']:
111 for name in exclusive['module']:
116 regex = r'CONFIG_%s' % (exclusive['regex'])
/external/tensorflow/tensorflow/python/kernel_tests/
H A Dscan_ops_test.py43 def handle_options(func, x, axis, exclusive, reverse):
52 if exclusive:
79 def _compare(self, x, axis, exclusive, reverse):
80 np_out = handle_options(np.cumsum, x, axis, exclusive, reverse)
82 tf_out = math_ops.cumsum(x, axis, exclusive, reverse).eval()
87 for exclusive in [True, False]:
89 self._compare(x, axis, exclusive, reverse)
146 def _compareGradient(self, shape, axis, exclusive, reverse):
150 result = math_ops.cumsum(t, axis, exclusive, reverse)
173 for exclusive i
[all...]
/external/tensorflow/tensorflow/compiler/tests/
H A Dscan_ops_test.py43 def handle_options(func, x, axis, exclusive, reverse):
52 if exclusive:
79 def _compare(self, x, axis, exclusive, reverse):
80 np_out = handle_options(np.cumsum, x, axis, exclusive, reverse)
83 tf_out = math_ops.cumsum(p, axis, exclusive, reverse).eval(
89 for exclusive in [True, False]:
91 self._compare(x, axis, exclusive, reverse)
157 def _compare(self, x, axis, exclusive, reverse):
158 np_out = handle_options(np.cumprod, x, axis, exclusive, reverse)
161 prod = math_ops.cumprod(p, axis, exclusive, revers
[all...]
/external/strace/
H A Dperf_event_struct.h19 exclusive :1, member in struct:perf_event_attr
/external/linux-kselftest/tools/testing/selftests/powerpc/pmu/ebb/
H A Devent_attributes_test.c36 event.attr.exclusive = 0;
37 /* Expected to fail, not exclusive */
110 leader.attr.exclusive = 0;
111 /* Expected to fail, leader isn't exclusive */
/external/curl/lib/
H A Dhttp2.h58 bool exclusive);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
H A DFrameReader.java93 * @param exclusive inserts this stream ID as the sole child of
96 void priority(int streamId, int streamDependency, int weight, boolean exclusive); argument
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/
H A DBaseTestHandler.java62 boolean exclusive) {
61 priority(int streamId, int streamDependency, int weight, boolean exclusive) argument
/external/tensorflow/tensorflow/contrib/coder/python/ops/
H A Dcoder_ops_test.py39 cdf = math_ops.cumsum(histogram, exclusive=False)
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorScan.h60 const XprType& expr, const Index& axis, bool exclusive = false, const Op& op = Op())
61 : m_expr(expr), m_axis(axis), m_accumulator(op), m_exclusive(exclusive) {}
70 bool exclusive() const { return m_exclusive; } function in class:Eigen::TensorScanOp
108 m_exclusive(op.exclusive()),
147 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool exclusive() const { function in struct:Eigen::TensorEvaluator
231 if (self.exclusive()) {
261 if (self.exclusive()) {
/external/curl/docs/cmdline-opts/
H A Dsocks4.d10 exclusive.
H A Dsocks4a.d10 exclusive.
H A Dsocks5-hostname.d10 exclusive.
H A Dsocks5.d10 exclusive.

Completed in 868 milliseconds

1234