/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 …]
|
D | opt_rebalance_tree.cpp | 142 ir_expression_operation operation; member 166 is_reduction_operation(ir_expression_operation operation) in is_reduction_operation() argument 168 switch (operation) { in is_reduction_operation() 250 if (is_reduction_operation(expr->operation)) { in is_reduction() 251 if (ird->operation != 0 && ird->operation != expr->operation) in is_reduction() 253 ird->operation = expr->operation; in is_reduction() 263 ird.operation = (ir_expression_operation)0; in handle_expression() 306 if (!expr || !is_reduction_operation(expr->operation)) in handle_rvalue()
|
/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/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/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() 225 res = getparameter(option, param, &usedarg, global, operation); in parseconfig() 232 if(operation->url_list && operation->url_list->url) { in parseconfig() 234 operation->next = malloc(sizeof(struct OperationConfig)); in parseconfig() 235 if(operation->next) { in parseconfig() 237 config_init(operation->next); in parseconfig() 240 operation->next->easy = global->easy; in parseconfig() 243 operation->next->global = global; in parseconfig() 246 global->last = operation->next; in parseconfig() [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/proguard/src/proguard/evaluation/value/ |
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 | 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 | 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/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/ims/rcs/presencepolling/src/com/android/service/ims/presence/ |
D | EABDbUtil.java | 169 ArrayList<ContentProviderOperation> operation = new ArrayList<ContentProviderOperation>(); in addContactsToEabDb() local 177 addContactToEabDb(context, operation, contactList.get(j).getDisplayName(), in addContactsToEabDb() 182 exceuteDB(context, operation); in addContactsToEabDb() 183 operation = null; in addContactsToEabDb() 184 operation = new ArrayList<ContentProviderOperation>(); in addContactsToEabDb() 188 exceuteDB(context, operation); in addContactsToEabDb() 208 ArrayList<ContentProviderOperation> operation = new ArrayList<ContentProviderOperation>(); in deleteContactsFromEabDb() local 218 deleteContactFromEabDb(context, operation, contactIdList[j]); in deleteContactsFromEabDb() 220 exceuteDB(context, operation); in deleteContactsFromEabDb() 221 operation = null; in deleteContactsFromEabDb() [all …]
|
/external/autotest/client/common_lib/cros/fake_device_server/ |
D | common_util.py | 75 operation = args.pop(0) if args else None 76 if operation: 80 'expected: %s!' % operation) 81 elif not operation in supported_operations: 83 400, 'Unsupported operation: %s' % operation) 90 return id, api_key, operation
|
/external/llvm/test/CodeGen/Generic/ |
D | vector-redux.ll | 8 ; CHECK: Detected a reduction operation: {{.*}} add 9 ; CHECK: Detected a reduction operation: {{.*}} add 10 ; CHECK: Detected a reduction operation: {{.*}} add 11 ; CHECK: Detected a reduction operation: {{.*}} add 12 ; CHECK: Detected a reduction operation: {{.*}} add 13 ; CHECK: Detected a reduction operation: {{.*}} add 14 ; CHECK: Detected a reduction operation: {{.*}} add 15 ; CHECK: Detected a reduction operation: {{.*}} add 16 ; CHECK: Detected a reduction operation: {{.*}} add 17 ; CHECK: Detected a reduction operation: {{.*}} add [all …]
|
/external/e2fsprogs/e2fsck/ |
D | ehandler.c | 21 static const char *operation; variable 54 if (operation) in e2fsck_handle_read_error() 56 error_message(error), operation); in e2fsck_handle_read_error() 108 if (operation) in e2fsck_handle_write_error() 110 error_message(error), operation); in e2fsck_handle_write_error() 123 const char *ret = operation; in ehandler_operation() 125 operation = op; in ehandler_operation()
|
/external/autotest/server/cros/ |
D | host_lock_manager.py | 75 def _check_host(self, host, operation): argument 90 if operation == self.LOCK and host_info.locked: 95 elif operation == self.UNLOCK and not host_info.locked: 142 def _host_modifier(self, hosts, operation, lock_reason=None): argument 154 mod_host = self._check_host(host, operation) 163 kwargs = {'locked': True if operation == self.LOCK else False} 164 if operation == self.LOCK: 170 if operation == self.LOCK and lock_reason: 172 elif operation == self.UNLOCK:
|
/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir_build_util.h | 52 inline Instruction *mkOp(operation, DataType, Value *); 53 Instruction *mkOp1(operation, DataType, Value *, Value *); 54 Instruction *mkOp2(operation, DataType, Value *, Value *, Value *); 55 Instruction *mkOp3(operation, DataType, Value *, Value *, Value *, Value *); 57 LValue *mkOp1v(operation, DataType, Value *, Value *); 58 LValue *mkOp2v(operation, DataType, Value *, Value *, Value *); 59 LValue *mkOp3v(operation, DataType, Value *, Value *, Value *, Value *); 62 Instruction *mkStore(operation, DataType, Symbol *, Value *ptr, Value *val); 74 Instruction *mkCvt(operation, DataType, Value *, DataType, Value *); 75 CmpInstruction *mkCmp(operation, CondCode, DataType, [all …]
|
/external/e2fsprogs/intl/ |
D | plural-exp.c | 38 .operation = var, 43 .operation = num, 52 .operation = not_equal, 80 plvar.operation = var; in init_germanic_plural() 83 plone.operation = num; in init_germanic_plural() 87 GERMANIC_PLURAL.operation = not_equal; in init_germanic_plural()
|
/external/gemmlowp/meta/ |
D | legacy_multi_thread_common.h | 50 const F& operation; member 54 std::int32_t result_stride, const F& operation) in MetaTask() 62 operation(operation) {} in MetaTask() 69 operation.ExecuteMatrixMatrix(scratch, task_lhs, task_rhs, task_rect.m, in Run() 121 const F& operation) { in MultiThreadedMatrixMatrix() argument 128 operation.ExecuteMatrixMatrix(scratch, lhs, rhs, m, n, k, result, in MultiThreadedMatrixMatrix() 134 std::int32_t scratch_per_thread = operation.ScratchPerThread(m, n, k); in MultiThreadedMatrixMatrix() 138 [&tasks, &task_scratch, lhs, rhs, k, result, result_stride, operation, in MultiThreadedMatrixMatrix() 141 task_scratch, lhs, rhs, rect, k, result, result_stride, operation)); in MultiThreadedMatrixMatrix()
|