Searched defs:is_unsigned (Results 1 - 15 of 15) sorted by relevance

/external/tensorflow/tensorflow/python/framework/
H A Ddtypes.py168 def is_unsigned(self): member in class:DType
/external/python/cpython2/Modules/
H A D_struct.c300 _range_error(const formatdef *f, int is_unsigned) argument
312 if (is_unsigned)
/external/python/cpython3/Modules/
H A D_struct.c309 _range_error(const formatdef *f, int is_unsigned) argument
321 if (is_unsigned)
/external/clang/test/SemaCXX/
H A Dtype-traits.cpp1237 void is_unsigned() function
/external/skia/src/sksl/
H A DSkSLSPIRVCodeGenerator.cpp161 static bool is_unsigned(const Context& context, const Type& type) { function in namespace:SkSL
163 return is_unsigned(context, type.componentType());
672 } else if (is_unsigned(fContext, type)) {
770 } else if (is_unsigned(fContext, type)) {
905 } else if (is_unsigned(fContext, operandType)) {
1773 } else if (is_unsigned(fContext, operandType)) {
/external/skqp/src/sksl/
H A DSkSLSPIRVCodeGenerator.cpp161 static bool is_unsigned(const Context& context, const Type& type) { function in namespace:SkSL
163 return is_unsigned(context, type.componentType());
672 } else if (is_unsigned(fContext, type)) {
770 } else if (is_unsigned(fContext, type)) {
897 } else if (is_unsigned(fContext, operandType)) {
1765 } else if (is_unsigned(fContext, operandType)) {
/external/v8/src/crankshaft/arm/
H A Dlithium-codegen-arm.cc2169 Condition LCodeGen::TokenToCondition(Token::Value op, bool is_unsigned) { argument
2181 cond = is_unsigned ? lo : lt;
2184 cond = is_unsigned ? hi : gt;
2187 cond = is_unsigned ? ls : le;
2190 cond = is_unsigned ? hs : ge;
2204 bool is_unsigned = local
2207 Condition cond = TokenToCondition(instr->op(), is_unsigned);
/external/v8/src/crankshaft/arm64/
H A Dlithium-codegen-arm64.cc1194 Condition LCodeGen::TokenToCondition(Token::Value op, bool is_unsigned) { argument
1206 cond = is_unsigned ? lo : lt;
1209 cond = is_unsigned ? hi : gt;
1212 cond = is_unsigned ? ls : le;
1215 cond = is_unsigned ? hs : ge;
2318 bool is_unsigned = local
2321 Condition cond = TokenToCondition(instr->op(), is_unsigned);
/external/v8/src/crankshaft/ia32/
H A Dlithium-codegen-ia32.cc1966 Condition LCodeGen::TokenToCondition(Token::Value op, bool is_unsigned) { argument
1978 cond = is_unsigned ? below : less;
1981 cond = is_unsigned ? above : greater;
1984 cond = is_unsigned ? below_equal : less_equal;
1987 cond = is_unsigned ? above_equal : greater_equal;
2001 bool is_unsigned = local
2005 Condition cc = TokenToCondition(instr->op(), is_unsigned);
/external/v8/src/crankshaft/mips/
H A Dlithium-codegen-mips.cc2065 Condition LCodeGen::TokenToCondition(Token::Value op, bool is_unsigned) { argument
2077 cond = is_unsigned ? lo : lt;
2080 cond = is_unsigned ? hi : gt;
2083 cond = is_unsigned ? ls : le;
2086 cond = is_unsigned ? hs : ge;
2100 bool is_unsigned = local
2103 Condition cond = TokenToCondition(instr->op(), is_unsigned);
/external/v8/src/crankshaft/mips64/
H A Dlithium-codegen-mips64.cc2186 Condition LCodeGen::TokenToCondition(Token::Value op, bool is_unsigned) { argument
2198 cond = is_unsigned ? lo : lt;
2201 cond = is_unsigned ? hi : gt;
2204 cond = is_unsigned ? ls : le;
2207 cond = is_unsigned ? hs : ge;
2221 bool is_unsigned = local
2224 Condition cond = TokenToCondition(instr->op(), is_unsigned);
/external/v8/src/crankshaft/ppc/
H A Dlithium-codegen-ppc.cc2279 bool is_unsigned = local
2304 if (is_unsigned) {
2310 if (is_unsigned) {
2319 if (is_unsigned) {
2325 if (is_unsigned) {
2334 if (is_unsigned) {
2340 if (is_unsigned) {
/external/v8/src/crankshaft/s390/
H A Dlithium-codegen-s390.cc2279 bool is_unsigned = local
2304 if (is_unsigned) {
2310 if (is_unsigned) {
2319 if (is_unsigned) {
2325 if (is_unsigned) {
2334 if (is_unsigned) {
2340 if (is_unsigned) {
/external/v8/src/crankshaft/x64/
H A Dlithium-codegen-x64.cc2105 inline Condition LCodeGen::TokenToCondition(Token::Value op, bool is_unsigned) { argument
2117 cond = is_unsigned ? below : less;
2120 cond = is_unsigned ? above : greater;
2123 cond = is_unsigned ? below_equal : less_equal;
2126 cond = is_unsigned ? above_equal : greater_equal;
2140 bool is_unsigned = local
2144 Condition cc = TokenToCondition(instr->op(), is_unsigned);
/external/v8/src/crankshaft/x87/
H A Dlithium-codegen-x87.cc2241 Condition LCodeGen::TokenToCondition(Token::Value op, bool is_unsigned) { argument
2253 cond = is_unsigned ? below : less;
2256 cond = is_unsigned ? above : greater;
2259 cond = is_unsigned ? below_equal : less_equal;
2262 cond = is_unsigned ? above_equal : greater_equal;
2276 bool is_unsigned = local
2280 Condition cc = TokenToCondition(instr->op(), is_unsigned);

Completed in 896 milliseconds