HomeSort by relevance Sort by last modified time
    Searched refs:operator (Results 1 - 25 of 504) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libstdc++/include/
new 15 void* operator new(std::size_t);
16 void* operator new(std::size_t, const std::nothrow_t&);
17 void operator delete(void*) throw();
18 // TODO: void operator delete(void*, std::size_t) throw();
19 void operator delete(void*, const std::nothrow_t&) throw();
21 void* operator new[](std::size_t);
22 void* operator new[](std::size_t, const std::nothrow_t&);
23 void operator delete[](void*) throw();
24 // TODO: void operator delete[](void*, std::size_t) throw();
25 void operator delete[](void*, const std::nothrow_t&) throw()
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_operator.py 1 import operator
37 self.assertRaises(TypeError, operator.lt)
38 self.assertRaises(TypeError, operator.lt, 1j, 2j)
39 self.assertFalse(operator.lt(1, 0))
40 self.assertFalse(operator.lt(1, 0.0))
41 self.assertFalse(operator.lt(1, 1))
42 self.assertFalse(operator.lt(1, 1.0))
43 self.assertTrue(operator.lt(1, 2))
44 self.assertTrue(operator.lt(1, 2.0))
47 self.assertRaises(TypeError, operator.le)
    [all...]
  /external/python/cpython2/Lib/test/
test_operator.py 1 import operator
37 self.assertRaises(TypeError, operator.lt)
38 self.assertRaises(TypeError, operator.lt, 1j, 2j)
39 self.assertFalse(operator.lt(1, 0))
40 self.assertFalse(operator.lt(1, 0.0))
41 self.assertFalse(operator.lt(1, 1))
42 self.assertFalse(operator.lt(1, 1.0))
43 self.assertTrue(operator.lt(1, 2))
44 self.assertTrue(operator.lt(1, 2.0))
47 self.assertRaises(TypeError, operator.le
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
RawContentVerifier.java 1 package org.bouncycastle.operator;
DigestCalculatorProvider.java 1 package org.bouncycastle.operator;
SignatureAlgorithmIdentifierFinder.java 1 package org.bouncycastle.operator;
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
RecipientOperator.java 6 import org.bouncycastle.operator.InputDecryptor;
7 import org.bouncycastle.operator.MacCalculator;
13 private final Object operator; field in class:RecipientOperator
18 this.operator = decryptor;
24 this.operator = macCalculator;
29 if (operator instanceof InputDecryptor)
31 return ((InputDecryptor)operator).getInputStream(dataIn);
35 return new TeeInputStream(dataIn, ((MacCalculator)operator).getOutputStream());
41 return operator instanceof MacCalculator;
46 return ((MacCalculator)operator).getMac()
    [all...]
  /external/python/cpython3/Lib/test/
test_operator.py 7 py_operator = support.import_fresh_module('operator', blocked=['_operator'])
8 c_operator = support.import_fresh_module('operator', fresh=['_operator'])
41 operator = self.module
42 self.assertRaises(TypeError, operator.lt)
43 self.assertRaises(TypeError, operator.lt, 1j, 2j)
44 self.assertFalse(operator.lt(1, 0))
45 self.assertFalse(operator.lt(1, 0.0))
46 self.assertFalse(operator.lt(1, 1))
47 self.assertFalse(operator.lt(1, 1.0))
48 self.assertTrue(operator.lt(1, 2)
    [all...]
  /external/deqp/modules/gles2/scripts/
gen-reserved_operators.py 55 if op.operator == "~":
58 self.operation = 'value ' + op.operator + ' 1;'
68 class Operator():
69 def __init__(self, operator, name):
70 self.operator = operator
76 Operator("%", "modulo"),
77 Operator("~", "bitwise_not"),
78 Operator("<<", "bitwise_shift_left"),
79 Operator(">>", "bitwise_shift_right")
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkStrUtil.inl 122 inline std::ostream& operator<< (std::ostream& s, VkPipelineCacheHeaderVersion value) { return s << getPipelineCacheHeaderVersionStr(value); }
123 inline std::ostream& operator<< (std::ostream& s, VkResult value) { return s << getResultStr(value); }
124 inline std::ostream& operator<< (std::ostream& s, VkStructureType value) { return s << getStructureTypeStr(value); }
125 inline std::ostream& operator<< (std::ostream& s, VkSystemAllocationScope value) { return s << getSystemAllocationScopeStr(value); }
126 inline std::ostream& operator<< (std::ostream& s, VkInternalAllocationType value) { return s << getInternalAllocationTypeStr(value); }
127 inline std::ostream& operator<< (std::ostream& s, VkFormat value) { return s << getFormatStr(value); }
128 inline std::ostream& operator<< (std::ostream& s, VkImageType value) { return s << getImageTypeStr(value); }
129 inline std::ostream& operator<< (std::ostream& s, VkImageTiling value) { return s << getImageTilingStr(value); }
130 inline std::ostream& operator<< (std::ostream& s, VkPhysicalDeviceType value) { return s << getPhysicalDeviceTypeStr(value); }
131 inline std::ostream& operator<< (std::ostream& s, VkQueryType value) { return s << getQueryTypeStr(value);
    [all...]
  /external/tensorflow/tensorflow/python/ops/linalg/
linear_operator_adjoint.py 33 """`LinearOperator` representing the adjoint of another operator.
35 This operator represents the adjoint of another operator.
38 # Create a 2 x 2 linear operator.
39 operator = LinearOperatorFullMatrix([[1 - i., 3.], [0., 1. + i]])
40 operator_adjoint = LinearOperatorAdjoint(operator)
54 ==> Shape [2, 4] Tensor, equal to operator.matmul(x, adjoint=True)
68 * If `is_X == True`, callers should expect the operator to have the
72 * If `is_X == False`, callers should expect the operator to not have `X`.
78 operator,
165 def operator(self): member in class:LinearOperatorAdjoint
    [all...]
linear_operator_block_diag.py 15 """Create a Block Diagonal operator from one or more `LinearOperators`."""
39 This operator combines one or more linear operators `[op1,...,opJ]`,
41 square and has each operator `opi` on the main diagonal, and zero's elsewhere.
53 If `opj` has shape `batch_shape_j + [M_j, M_j]`, then the combined operator
57 Even if the combined shape is well defined, the combined operator's
62 # Create a 4 x 4 linear operator combined of two 2 x 2 operators.
65 operator = LinearOperatorBlockDiag([operator_1, operator_2])
67 operator.to_dense()
73 operator.shape
76 operator.log_abs_determinant(
    [all...]
linear_operator_inversion.py 30 """`LinearOperator` representing the inverse of another operator.
32 This operator represents the inverse of another operator.
35 # Create a 2 x 2 linear operator.
36 operator = LinearOperatorFullMatrix([[1., 0.], [0., 2.]])
37 operator_inv = LinearOperatorInversion(operator)
51 ==> Shape [2, 4] Tensor, equal to operator.solve(x)
66 * If `is_X == True`, callers should expect the operator to have the
70 * If `is_X == False`, callers should expect the operator to not have `X`.
76 operator,
178 def operator(self): member in class:LinearOperatorInversion
    [all...]
linear_operator_kronecker.py 69 This operator composes one or more linear operators `[op1,...,opJ]`,
74 If `opj` has shape `batch_shape_j + [M_j, N_j]`, then the composed operator
79 # Create a 4 x 4 linear operator composed of two 2 x 2 operators.
82 operator = LinearOperatorKronecker([operator_1, operator_2])
84 operator.to_dense()
90 operator.shape
93 operator.log_abs_determinant()
97 operator.matmul(x)
128 * If `is_X == True`, callers should expect the operator to have the
132 * If `is_X == False`, callers should expect the operator to not have `X`
    [all...]
  /external/libchrome/third_party/jinja2/
tests.py 6 Jinja test functions. Used with the "is" operator.
11 import operator
160 '==': operator.eq,
161 'eq': operator.eq,
162 'equalto': operator.eq,
163 '!=': operator.ne,
164 'ne': operator.ne,
165 '>': operator.gt,
166 'gt': operator.gt,
167 'greaterthan': operator.gt
    [all...]
  /external/tensorflow/tensorflow/java/src/test/resources/org/tensorflow/processor/operator/bad/
BasicBad.java 16 package org.tensorflow.processor.operator.bad;
18 import org.tensorflow.op.annotation.Operator;
21 @Operator int foo;
  /external/tensorflow/tensorflow/java/src/test/resources/org/tensorflow/processor/operator/good/
BasicGood.java 16 package org.tensorflow.processor.operator.good;
18 import org.tensorflow.op.annotation.Operator;
20 @Operator
  /external/tensorflow/tensorflow/python/kernel_tests/linalg/
linear_operator_full_matrix_test.py 52 operator = linalg.LinearOperatorFullMatrix(
58 return operator, matrix
63 operator = linalg.LinearOperatorFullMatrix(
68 self.assertTrue(operator.is_positive_definite)
69 self.assertTrue(operator.is_non_singular)
70 self.assertFalse(operator.is_self_adjoint)
72 self.assertTrue(operator.is_square)
82 operator = linalg.LinearOperatorFullMatrix(matrix)
88 operator.assert_non_singular().run()
95 operator = linalg.LinearOperatorFullMatrix(matrix
    [all...]
linear_operator_inversion_test.py 60 operator = LinearOperatorInversion(
64 operator = LinearOperatorInversion(
67 return operator, linalg.inv(matrix)
72 operator = linalg.LinearOperatorFullMatrix(
77 operator_inv = LinearOperatorInversion(operator)
85 operator = linalg.LinearOperatorFullMatrix(matrix)
87 operator,
98 operator = linalg.LinearOperatorFullMatrix(
101 LinearOperatorInversion(operator, is_positive_definite=True)
103 operator = linalg.LinearOperatorFullMatrix(matrix, is_self_adjoint=False
    [all...]
linear_operator_identity_test.py 58 operator = linalg_lib.LinearOperatorIdentity(
62 return operator, mat
67 operator = linalg_lib.LinearOperatorIdentity(num_rows=2)
68 operator.assert_positive_definite().run() # Should not fail
73 operator = linalg_lib.LinearOperatorIdentity(num_rows=2)
74 operator.assert_non_singular().run() # Should not fail
79 operator = linalg_lib.LinearOperatorIdentity(num_rows=2)
80 operator.assert_self_adjoint().run() # Should not fail
86 operator = linalg_lib.LinearOperatorIdentity(
89 y = operator.matmul(x
    [all...]
linear_operator_adjoint_test.py 60 operator = LinearOperatorAdjoint(
64 operator = LinearOperatorAdjoint(
67 return operator, linalg.adjoint(matrix)
72 operator = linalg.LinearOperatorFullMatrix(
77 operator_adjoint = LinearOperatorAdjoint(operator)
85 operator = linalg.LinearOperatorFullMatrix(matrix)
87 operator,
98 operator = linalg.LinearOperatorFullMatrix(
101 LinearOperatorAdjoint(operator, is_positive_definite=True)
103 operator = linalg.LinearOperatorFullMatrix(matrix, is_self_adjoint=False
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/bc/
BcDigestProvider.java 1 package org.bouncycastle.operator.bc;
5 import org.bouncycastle.operator.OperatorCreationException;
  /external/icu/icu4c/source/tools/memcheck/
ICUMemCheck.pl 21 # common/uniset.o U operator delete(void*)
22 # common/unifilt.o U operator delete(void*)
25 # i18n/strrepl.o U operator delete(void*)
45 if ($symbols =~ /U +operator delete\(void\*\)/) {
48 if ($symbols =~ /U +operator delete\[\]\(void\*\)/) {
51 if ($symbols =~ /U +operator new\(unsigned int\)/) {
54 if ($symbols =~ /U +operator new\[\]\(unsigned int\)/) {
  /external/tinyxml2/docs/search/
all_b.js 4 ['operator_3d',['operator=',['../classtinyxml2_1_1_x_m_l_handle.html#a75b908322bb4b83be3281b6845252b20',1,'tinyxml2::XMLHandle']]]
functions_b.js 4 ['operator_3d',['operator=',['../classtinyxml2_1_1_x_m_l_handle.html#a75b908322bb4b83be3281b6845252b20',1,'tinyxml2::XMLHandle']]]

Completed in 782 milliseconds

1 2 3 4 5 6 7 8 91011>>