/external/mesa3d/src/compiler/glsl/ |
D | ir_expression_operation.py | 325 class operation(object): class 418 operation("bit_not", 1, printable_name="~", source_types=integer_types, c_expression="~ {src0}"), 419 operation("logic_not", 1, printable_name="!", source_types=(bool_type,), c_expression="!{src0}"), 420 …operation("neg", 1, source_types=numeric_types, c_expression={'u': "-((int) {src0})", 'default': "… 421 …operation("abs", 1, source_types=signed_numeric_types, c_expression={'i': "{src0} < 0 ? -{src0} : … 422 …operation("sign", 1, source_types=signed_numeric_types, c_expression={'i': "({src0} > 0) - ({src0}… 423 …operation("rcp", 1, source_types=real_types, c_expression={'f': "{src0} != 0.0F ? 1.0F / {src0} : … 424 …operation("rsq", 1, source_types=real_types, c_expression={'f': "1.0F / sqrtf({src0})", 'd': "1.0 … 425 …operation("sqrt", 1, source_types=real_types, c_expression={'f': "sqrtf({src0})", 'd': "sqrt({src0… 426 …operation("exp", 1, source_types=(float_type,), c_expression="expf({src0})"), # Log base e… [all …]
|
D | opt_algebraic.cpp | 191 if (expr0 && expr0->operation == ir_binop_add && in try_replace_with_dot() 193 expr1 && expr1->operation == ir_binop_add && in try_replace_with_dot() 256 if (!ir2 || ir1->operation != ir2->operation) in reassociate_constant() 318 if (ir->operation == ir_binop_mul && in handle_expression() 323 if (matrix_mul && matrix_mul->operation == ir_binop_mul && in handle_expression() 344 switch (ir->operation) { in handle_expression() 346 if (op_expr[0] && op_expr[0]->operation == ir_unop_bit_not) in handle_expression() 354 switch (op_expr[0]->operation) { in handle_expression() 367 if (op_expr[0]->operation == ir_unop_neg) { in handle_expression() 376 if (op_expr[0]->operation == ir_unop_log) { in handle_expression() [all …]
|
/external/skia/src/core/ |
D | SkMD5.cpp | 121 static inline void operation(T operation, uint32_t& a, uint32_t b, uint32_t c, uint32_t d, in operation() function 123 a = b + rotate_left(a + operation(b, c, d) + x + t, s); in operation() 133 operation(F(), a, b, c, d, X[ 0], 7, 0xd76aa478); // 1 in transform() 134 operation(F(), d, a, b, c, X[ 1], 12, 0xe8c7b756); // 2 in transform() 135 operation(F(), c, d, a, b, X[ 2], 17, 0x242070db); // 3 in transform() 136 operation(F(), b, c, d, a, X[ 3], 22, 0xc1bdceee); // 4 in transform() 137 operation(F(), a, b, c, d, X[ 4], 7, 0xf57c0faf); // 5 in transform() 138 operation(F(), d, a, b, c, X[ 5], 12, 0x4787c62a); // 6 in transform() 139 operation(F(), c, d, a, b, X[ 6], 17, 0xa8304613); // 7 in transform() 140 operation(F(), b, c, d, a, X[ 7], 22, 0xfd469501); // 8 in transform() [all …]
|
/external/skqp/src/core/ |
D | SkMD5.cpp | 121 static inline void operation(T operation, uint32_t& a, uint32_t b, uint32_t c, uint32_t d, in operation() function 123 a = b + rotate_left(a + operation(b, c, d) + x + t, s); in operation() 133 operation(F(), a, b, c, d, X[ 0], 7, 0xd76aa478); // 1 in transform() 134 operation(F(), d, a, b, c, X[ 1], 12, 0xe8c7b756); // 2 in transform() 135 operation(F(), c, d, a, b, X[ 2], 17, 0x242070db); // 3 in transform() 136 operation(F(), b, c, d, a, X[ 3], 22, 0xc1bdceee); // 4 in transform() 137 operation(F(), a, b, c, d, X[ 4], 7, 0xf57c0faf); // 5 in transform() 138 operation(F(), d, a, b, c, X[ 5], 12, 0x4787c62a); // 6 in transform() 139 operation(F(), c, d, a, b, X[ 6], 17, 0xa8304613); // 7 in transform() 140 operation(F(), b, c, d, a, X[ 7], 22, 0xfd469501); // 8 in transform() [all …]
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowAlarmManager.java | 27 public void set(int type, long triggerAtTime, PendingIntent operation) { in set() argument 28 internalSet(type, triggerAtTime, 0L, operation, null); in set() 32 public void setExact(int type, long triggerAtTime, PendingIntent operation) { in setExact() argument 33 internalSet(type, triggerAtTime, 0L, operation, null); in setExact() 38 PendingIntent operation) { in setWindow() argument 39 internalSet(type, windowStartMillis, 0L, operation, null); in setWindow() 43 public void setAndAllowWhileIdle(int type, long triggerAtTime, PendingIntent operation) { in setAndAllowWhileIdle() argument 44 internalSet(type, triggerAtTime, 0L, operation, null); in setAndAllowWhileIdle() 48 public void setExactAndAllowWhileIdle(int type, long triggerAtTime, PendingIntent operation) { in setExactAndAllowWhileIdle() argument 49 internalSet(type, triggerAtTime, 0L, operation, null); in setExactAndAllowWhileIdle() [all …]
|
/external/python/cpython3/Lib/idlelib/ |
D | redirector.py | 56 for operation in list(self._operations): 57 self.unregister(operation) 67 def register(self, operation, function): argument 78 self._operations[operation] = function 79 setattr(self.widget, operation, function) 80 return OriginalCommand(self, operation) 82 def unregister(self, operation): argument 87 if operation in self._operations: 88 function = self._operations[operation] 89 del self._operations[operation] [all …]
|
/external/python/cpython2/Lib/idlelib/ |
D | WidgetRedirector.py | 56 for operation in list(self._operations): 57 self.unregister(operation) 67 def register(self, operation, function): argument 78 self._operations[operation] = function 79 setattr(self.widget, operation, function) 80 return OriginalCommand(self, operation) 82 def unregister(self, operation): argument 87 if operation in self._operations: 88 function = self._operations[operation] 89 del self._operations[operation] [all …]
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowAlarmManager.java | 24 public void set(int type, long triggerAtTime, PendingIntent operation) { in set() argument 25 internalSet(type, triggerAtTime, 0L, operation); in set() 29 public void setRepeating (int type, long triggerAtTime, long interval, PendingIntent operation){ in setRepeating() argument 30 internalSet(type, triggerAtTime, interval, operation); in setRepeating() 33 private void internalSet(int type, long triggerAtTime, long interval, PendingIntent operation) { in internalSet() argument 34 Intent intent = shadowOf(operation).getSavedIntent(); in internalSet() 36 Intent scheduledIntent = shadowOf(scheduledAlarm.operation).getSavedIntent(); in internalSet() 42 scheduledAlarms.add(new ScheduledAlarm(type, triggerAtTime, interval, operation)); in internalSet() 83 final Intent alarmIntent = shadowOf(scheduledAlarm.operation).getSavedIntent(); in cancel() 98 public PendingIntent operation; field in ShadowAlarmManager.ScheduledAlarm [all …]
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/ |
D | rewrite.rb | 216 operation = operations.shift 217 location = operation.location 219 case operation 231 conflict!( operation, prior_operation ) 242 operation.text += prior_operation.text 247 prior_operation.text = operation.text << prior_operation.text.to_s 248 operation = nil 251 conflict!( operation, prior_operation ) 257 reduced.unshift( operation ) if operation 262 @operations.inject( {} ) do |map, operation| [all …]
|
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/ |
D | Output.java | 33 operation = op; in Output() 39 return operation; in op() 49 return new Shape(operation.shape(index)); in shape() 54 return operation.dtype(index); in dataType() 64 return Objects.hash(operation, index); in hashCode() 74 return index == that.index && operation.equals(that.operation); in equals() 83 operation.type(), operation.name(), index, shape().toString(), dataType()); in toString() 86 private final Operation operation; field in Output
|
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/op/ |
D | PrimitiveOp.java | 30 return operation.hashCode(); in hashCode() 43 return operation.equals(((PrimitiveOp) obj).operation); in equals() 48 return String.format("<%s '%s'>", operation.type(), operation.name()); in toString() 55 protected final Operation operation; field in PrimitiveOp 62 protected PrimitiveOp(Operation operation) { in PrimitiveOp() argument 63 this.operation = operation; in PrimitiveOp()
|
/external/curl/src/ |
D | tool_parsecfg.c | 55 struct OperationConfig *operation = global->first; in parseconfig() local 207 warnf(operation->global, "%s:%d: warning: '%s' uses unquoted " in parseconfig() 221 res = getparameter(option, param, &usedarg, global, operation); in parseconfig() 228 if(operation->url_list && operation->url_list->url) { in parseconfig() 230 operation->next = malloc(sizeof(struct OperationConfig)); in parseconfig() 231 if(operation->next) { in parseconfig() 233 config_init(operation->next); in parseconfig() 236 operation->next->easy = global->easy; in parseconfig() 239 operation->next->global = global; in parseconfig() 242 global->last = operation->next; in parseconfig() [all …]
|
/external/puffin/scripts/ |
D | test_corpus.py | 76 operation = 'puffhuff' 77 logging.debug('Running %s on %s', operation, src) 79 '--operation={}'.format(operation), 84 .format(operation, cmd)) 89 .format(tgt_file.name, src, operation)) 98 operation = 'puffdiff' 100 operation, 104 '--operation={}'.format(operation), 112 .format(operation, cmd)) 116 operation = 'puffpatch' [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/ |
D | vktSpvAsmSpirvVersionTests.cpp | 53 Operation& operator++ (Operation& operation) in operator ++() argument 55 if (operation == OPERATION_LAST) in operator ++() 56 operation = OPERATION_COMPUTE; in operator ++() 58 operation = static_cast<Operation>(static_cast<deUint32>(operation) + 1); in operator ++() 60 return operation; in operator ++() 65 Operation operation; member 102 switch (testParameters.operation) in initGraphicsInstanceContext() 150 …const deUint32 seed = (static_cast<deUint32>(testParameters.operation)<<16) ^ static_cast<deUin… in getComputeShaderSpec() 231 if (m_testParameters.operation != OPERATION_COMPUTE) in SpvAsmComputeSpirvVersionsInstance() 275 switch (m_testParameters.operation) in initPrograms() [all …]
|
/external/iptables/extensions/ |
D | libipt_ECN.c | 56 einfo->operation = IPT_ECN_OP_SET_ECE | IPT_ECN_OP_SET_CWR; in ECN_parse() 61 einfo->operation |= IPT_ECN_OP_SET_CWR; in ECN_parse() 65 einfo->operation |= IPT_ECN_OP_SET_ECE; in ECN_parse() 69 einfo->operation |= IPT_ECN_OP_SET_IP; in ECN_parse() 90 if (einfo->operation == (IPT_ECN_OP_SET_ECE|IPT_ECN_OP_SET_CWR) in ECN_print() 95 if (einfo->operation & IPT_ECN_OP_SET_ECE) in ECN_print() 98 if (einfo->operation & IPT_ECN_OP_SET_CWR) in ECN_print() 101 if (einfo->operation & IPT_ECN_OP_SET_IP) in ECN_print() 111 if (einfo->operation == (IPT_ECN_OP_SET_ECE|IPT_ECN_OP_SET_CWR) in ECN_save() 117 if (einfo->operation & IPT_ECN_OP_SET_ECE) in ECN_save() [all …]
|
D | libxt_ecn.c | 47 einfo->operation |= XT_ECN_OP_MATCH_CWR; in ecn_parse() 52 einfo->operation |= XT_ECN_OP_MATCH_ECE; in ecn_parse() 59 einfo->operation |= XT_ECN_OP_MATCH_IP; in ecn_parse() 80 if (einfo->operation & XT_ECN_OP_MATCH_ECE) { in ecn_print() 85 if (einfo->operation & XT_ECN_OP_MATCH_CWR) { in ecn_print() 90 if (einfo->operation & XT_ECN_OP_MATCH_IP) { in ecn_print() 102 if (einfo->operation & XT_ECN_OP_MATCH_ECE) { in ecn_save() 108 if (einfo->operation & XT_ECN_OP_MATCH_CWR) { in ecn_save() 114 if (einfo->operation & XT_ECN_OP_MATCH_IP) { in ecn_save() 127 if (!(einfo->operation & XT_ECN_OP_MATCH_IP)) in ecn_xlate()
|
/external/boringssl/src/crypto/evp/ |
D | evp_ctx.c | 115 ret->operation = EVP_PKEY_OP_UNDEFINED; in evp_pkey_ctx_new() 167 ret->operation = ctx->operation; in EVP_PKEY_CTX_dup() 202 if (ctx->operation == EVP_PKEY_OP_UNDEFINED) { in EVP_PKEY_CTX_ctrl() 207 if (optype != -1 && !(ctx->operation & optype)) { in EVP_PKEY_CTX_ctrl() 222 ctx->operation = EVP_PKEY_OP_SIGN; in EVP_PKEY_sign_init() 232 if (ctx->operation != EVP_PKEY_OP_SIGN) { in EVP_PKEY_sign() 245 ctx->operation = EVP_PKEY_OP_VERIFY; in EVP_PKEY_verify_init() 255 if (ctx->operation != EVP_PKEY_OP_VERIFY) { in EVP_PKEY_verify() 267 ctx->operation = EVP_PKEY_OP_ENCRYPT; in EVP_PKEY_encrypt_init() 277 if (ctx->operation != EVP_PKEY_OP_ENCRYPT) { in EVP_PKEY_encrypt() [all …]
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | ContentProviderOperationTest.java | 26 ContentProviderOperation operation = builder.build(); in newInsert() local 27 ShadowContentProviderOperation shadowOperation = Robolectric.shadowOf(operation); in newInsert() 28 assertThat(operation.getUri(), equalTo(URI)); in newInsert() 42 ContentProviderOperation operation = builder.build(); in newInsertWithValueBackReference() local 44 ShadowContentProviderOperation shadowOperation = Robolectric.shadowOf(operation); in newInsertWithValueBackReference() 54 ContentProviderOperation operation = builder.build(); in newUpdate() local 55 ShadowContentProviderOperation shadowOperation = Robolectric.shadowOf(operation); in newUpdate() 56 assertThat(operation.getUri(), equalTo(URI)); in newUpdate() 68 ContentProviderOperation operation = builder.build(); in newDelete() local 69 ShadowContentProviderOperation shadowOperation = Robolectric.shadowOf(operation); in newDelete() [all …]
|
/external/deqp/modules/gles2/scripts/ |
D | gen-invalid-implicit-conversions.py | 74 def __init__(self, operation, type0, type1): argument 75 self.name = arithOperations[operation] + '_' + type0 + '_' + type1 76 self.operation = operation 81 …lf.name + '_' + self.type0, "TYPE0": self.type0, "TYPE1": self.type1, "OPERATION": self.operation } 82 …lf.name + '_' + self.type1, "TYPE0": self.type0, "TYPE1": self.type1, "OPERATION": self.operation } 85 def createCase(operation, type0, type1): argument 89 case = InvalidImplicitConversionCase(operation, t0, t1)
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
D | task_io_service.hpp | 39 typedef task_io_service_operation operation; typedef in asio::detail::task_io_service 103 operation* op, bool is_continuation); 107 ASIO_DECL void post_deferred_completion(operation* op); 111 ASIO_DECL void post_deferred_completions(op_queue<operation>& ops); 115 ASIO_DECL void abandon_operations(op_queue<operation>& ops); 123 ASIO_DECL void do_dispatch(operation* op); 161 struct task_operation : operation 163 task_operation() : operation(0) {} in task_operation() 173 op_queue<operation> op_queue_;
|
/external/proguard/src/proguard/evaluation/value/ |
D | CompositeDoubleValue.java | 39 private final byte operation; field in CompositeDoubleValue 48 byte operation, in CompositeDoubleValue() argument 52 this.operation = operation; in CompositeDoubleValue() 64 this.operation == ((CompositeDoubleValue)object).operation && in equals() 79 return "("+doubleValue1+((char)operation)+doubleValue2+")"; in toString()
|
D | CompositeFloatValue.java | 39 private final byte operation; field in CompositeFloatValue 48 byte operation, in CompositeFloatValue() argument 52 this.operation = operation; in CompositeFloatValue() 64 this.operation == ((CompositeFloatValue)object).operation && in equals() 79 return "("+floatValue1+((char)operation)+floatValue2+")"; in toString()
|
D | CompositeIntegerValue.java | 45 private final byte operation; field in CompositeIntegerValue 54 byte operation, in CompositeIntegerValue() argument 58 this.operation = operation; in CompositeIntegerValue() 70 this.operation == ((CompositeIntegerValue)object).operation && in equals() 85 return "("+integerValue1+((char)operation)+integerValue2+")"; in toString()
|
D | CompositeLongValue.java | 45 private final byte operation; field in CompositeLongValue 54 byte operation, in CompositeLongValue() argument 58 this.operation = operation; in CompositeLongValue() 70 this.operation == ((CompositeLongValue)object).operation && in equals() 85 return "("+longValue1+((char)operation)+longValue2+")"; in toString()
|
/external/deqp/modules/gles3/scripts/ |
D | gen-invalid-implicit-conversions.py | 78 def __init__(self, operation, type0, type1): argument 79 self.name = arithOperations[operation] + '_' + type0 + '_' + type1 80 self.operation = operation 86 …lf.name + '_' + self.type0, "TYPE0": self.type0, "TYPE1": self.type1, "OPERATION": self.operation } 87 …lf.name + '_' + self.type1, "TYPE0": self.type0, "TYPE1": self.type1, "OPERATION": self.operation } 90 def createCase(operation, type0, type1): argument 94 case = InvalidImplicitConversionCase(operation, t0, t1)
|