/external/boringssl/src/crypto/chacha/asm/ |
D | chacha-x86_64.pl | 74 ($out,$inp,$len,$key,$counter)=("%rdi","%rsi","%rdx","%rcx","%r8"); 290 mov $inp,64+8(%rsp) # save inp 310 mov 64+8(%rsp),$inp # load inp 331 xor 4*0($inp),@x[0] # xor with input 332 xor 4*1($inp),@x[1] 333 xor 4*2($inp),@x[2] 334 xor 4*3($inp),@x[3] 335 xor 4*4($inp),@x[4] 336 xor 4*5($inp),@x[5] 337 xor 4*6($inp),@x[6] [all …]
|
/external/libxaac/decoder/armv7/ |
D | ixheaacd_aac_ld_dec_rearrange.s | 28 LDMIA r4, {r12, r14} @ r12 = inp[idx] and r14 = inp[idx+1] 29 STMIA r1!, {r12, r14} @ *buf1++ = inp[idx] and *buf1++ = inp[idx+1] 30 LDMIA r5, {r12, r14} @ r12 = inp[idx] and r14 = inp[idx+1] 31 STMIA r1!, {r12, r14} @ *buf1++ = inp[idx] and *buf1++ = inp[idx+1] 32 LDMIA r6, {r12, r14} @ r12 = inp[idx] and r14 = inp[idx+1] 33 STMIA r1!, {r12, r14} @ *buf1++ = inp[idx] and *buf1++ = inp[idx+1] 34 LDMIA r7, {r12, r14} @ r12 = inp[idx] and r14 = inp[idx+1] 35 STMIA r1!, {r12, r14} @ *buf1++ = inp[idx] and *buf1++ = inp[idx+1] 36 LDMIA r8, {r12, r14} @ r12 = inp[idx] and r14 = inp[idx+1] 37 STMIA r1!, {r12, r14} @ *buf1++ = inp[idx] and *buf1++ = inp[idx+1] [all …]
|
/external/epid-sdk/ext/ipp/sources/ippcp/ |
D | pcprij128safe2.h | 54 #define TRANSPOSE(out, inp) \ argument 55 (out)[ 0] = (inp)[ 0]; \ 56 (out)[ 4] = (inp)[ 1]; \ 57 (out)[ 8] = (inp)[ 2]; \ 58 (out)[12] = (inp)[ 3]; \ 60 (out)[ 1] = (inp)[ 4]; \ 61 (out)[ 5] = (inp)[ 5]; \ 62 (out)[ 9] = (inp)[ 6]; \ 63 (out)[13] = (inp)[ 7]; \ 65 (out)[ 2] = (inp)[ 8]; \ [all …]
|
/external/tensorflow/tensorflow/python/eager/ |
D | function_argument_naming_test.py | 53 [inp.op.name for inp in fn_op.inputs]) 56 [inp.op.get_attr('_user_specified_name') for inp in fn_op.inputs]) 77 [inp.op.name for inp in fn_op.inputs]) 80 [inp.op.get_attr('_user_specified_name') for inp in fn_op.inputs]) 96 [inp.op.name for inp in fn_op.inputs]) 99 [inp.op.get_attr('_user_specified_name') for inp in fn_op.inputs]) 119 [inp.op.name for inp in fn_op2.inputs]) 122 [inp.op.get_attr('_user_specified_name') for inp in fn_op2.inputs]) 132 [inp.op.name for inp in fn_op3.inputs]) 135 [inp.op.get_attr('_user_specified_name') for inp in fn_op3.inputs]) [all …]
|
/external/grpc-grpc/test/core/end2end/fuzzers/ |
D | api_fuzzer.cc | 74 static void end(input_stream* inp) { inp->cur = inp->end; } in end() argument 76 static void read_buffer(input_stream* inp, char** buffer, size_t* length, in read_buffer() argument 78 *length = grpc_fuzzer_get_next_byte(inp); in read_buffer() 81 *length = grpc_fuzzer_get_next_byte(inp); in read_buffer() 87 (*buffer)[i] = static_cast<char>(grpc_fuzzer_get_next_byte(inp)); in read_buffer() 97 static grpc_slice read_string_like_slice(input_stream* inp) { in read_string_like_slice() argument 99 char* s = grpc_fuzzer_get_next_string(inp, &special); in read_string_like_slice() 105 static grpc_slice read_buffer_like_slice(input_stream* inp) { in read_buffer_like_slice() argument 109 read_buffer(inp, &buffer, &length, &special); in read_buffer_like_slice() 116 static uint32_t read_uint22(input_stream* inp) { in read_uint22() argument [all …]
|
/external/tensorflow/tensorflow/python/debug/lib/ |
D | stepper.py | 264 non_control_inputs = [inp for inp in curr_node.inputs] 265 control_inputs = [inp for inp in curr_node.control_inputs] 270 for inp in all_inputs: 271 all_input_nodes.add(self._get_node(inp).name) 275 for inp in all_inputs: 278 if inp.name not in self._output_targets: 279 self._output_targets[inp.name] = set([curr_elem.name]) 281 self._output_targets[inp.name].add(curr_elem.name) 283 if (isinstance(inp, ops.Tensor) and 284 inp.op.type in ["Variable", "VariableV2"] and [all …]
|
D | debug_graphs.py | 209 for inp in input_list[node_name]: 210 if get_node_name(inp) in self._visited_nodes: 212 self._inputs.append(inp) 214 self.trace(inp) 303 for inp in node.input: 304 if is_copy_node(inp) and (node.op == "_Send" or node.op == "_Retval"): 307 if inp.startswith("^"): 308 cinp = inp[1:] 311 self._node_inputs[node.name].append(inp) 350 inp = inputs[i] [all …]
|
/external/tensorflow/tensorflow/contrib/batching/python/ops/ |
D | batch_ops_test.py | 47 inp = array_ops.placeholder(dtype=dtypes.int32, shape=[1]) 49 [inp], num_batch_threads=1, max_batch_size=2, 56 sess.run([batched, index], feed_dict={inp: [1]})) 60 main_results = sess.run([batched, index], feed_dict={inp: [2]}) 87 inp = array_ops.placeholder(dtype=dtypes.int32, shape=[2]) 89 [inp], num_batch_threads=1, max_batch_size=10, 97 sess.run([batched, index], feed_dict={inp: [1, 3]})) 101 main_results = sess.run([batched, index], feed_dict={inp: [2, 4]}) 170 inp = array_ops.placeholder(dtype=dtypes.int32, shape=[1]) 172 [inp], num_batch_threads=1, max_batch_size=10, [all …]
|
/external/boringssl/src/crypto/fipsmodule/aes/asm/ |
D | aesni-x86_64.pl | 218 $inp="%rdi"; 270 { my ($inp,$out,$key) = @_4args; 284 movups ($inp),$inout0 # load input 302 movups ($inp),$inout0 # load input 645 movdqu ($inp),$inout0 # load 8 input blocks 646 movdqu 0x10($inp),$inout1 647 movdqu 0x20($inp),$inout2 648 movdqu 0x30($inp),$inout3 649 movdqu 0x40($inp),$inout4 650 movdqu 0x50($inp),$inout5 [all …]
|
D | aesni-x86.pl | 98 $inp="esi"; 438 &mov ($inp,&wparam(0)); 454 &movdqu ($inout0,&QWP(0,$inp)); 455 &movdqu ($inout1,&QWP(0x10,$inp)); 456 &movdqu ($inout2,&QWP(0x20,$inp)); 457 &movdqu ($inout3,&QWP(0x30,$inp)); 458 &movdqu ($inout4,&QWP(0x40,$inp)); 459 &movdqu ($inout5,&QWP(0x50,$inp)); 460 &lea ($inp,&DWP(0x60,$inp)); 466 &movdqu ($inout0,&QWP(0,$inp)); [all …]
|
D | aesp8-ppc.pl | 81 my ($inp,$bits,$out,$ptr,$cnt,$rounds)=map("r$_",(3..8)); 115 ${UCMP}i $inp,0 116 beq- Lenc_key_abort # if ($inp==0) return -1; 134 neg r9,$inp 135 lvx $in0,0,$inp 136 addi $inp,$inp,15 # 15 is not typo 140 lvx $in1,0,$inp 157 addi $inp,$inp,8 159 addi $inp,$inp,8 221 addi $inp,$out,15 # 15 is not typo [all …]
|
D | bsaes-armv7.pl | 68 my ($inp,$out,$len,$key)=("r0","r1","r2","r3"); 920 my ($out,$inp,$rounds,$const)=("r12","r4","r5","r6"); 951 vld1.8 {@XMM[7]}, [$inp]! @ load round 0 key 957 vld1.8 {@XMM[15]}, [$inp]! @ load round 1 key 990 vld1.8 {@XMM[15]}, [$inp]! @ load next round key 1019 ldr r5,[$inp,#240] @ pass rounds 1020 mov r4,$inp @ pass key 1037 vld1.8 {@XMM[0]-@XMM[1]}, [$inp]! @ load input 1038 vld1.8 {@XMM[2]-@XMM[3]}, [$inp]! 1040 vld1.8 {@XMM[4]-@XMM[5]}, [$inp]! [all …]
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | split_op_test.py | 56 inp = np.zeros((1, 10)) 60 sess.run(array_ops.split(model_input, [4]), {model_input: inp}) 137 inp = self._makeData(shape, dtype) 139 result = self.evaluate(array_ops.split(inp, size_splits, split_dim)) 145 self.assertAllEqual(result[i], inp[slices]) 148 inp = np.random.rand(4, 4).astype("f") 151 result = self.evaluate(array_ops.split(inp, [4], 0)) 152 self.assertAllEqual(result[0], inp) 154 result = self.evaluate(array_ops.split(inp, [-1, 3], 0)) 155 self.assertAllEqual(result[0], inp[0:1, :]) [all …]
|
D | pad_op_test.py | 34 def _npPad(self, inp, paddings, mode, constant_values=0): argument 37 return np.pad(inp, paddings, mode=mode, constant_values=constant_values) 39 return np.pad(inp, paddings, mode=mode) 276 inp = constant_op.constant(0.0, shape=[4, 4, 4, 4]) 277 padded = array_ops.pad(inp, array_ops.placeholder(dtypes.int32)) 281 inp = array_ops.placeholder(dtypes.float32) 282 padded = array_ops.pad(inp, [[2, 2], [2, 2]]) 286 inp = array_ops.placeholder(dtypes.float32) 287 padded = array_ops.pad(inp, array_ops.placeholder(dtypes.int32)) 295 inp = constant_op.constant(0.0, shape=[4, 4]) [all …]
|
D | shape_ops_test.py | 164 inp = array_ops.zeros([2**31]) 166 inp, optimize=False, out_type=dtypes.int64) 172 inp = array_ops.zeros([2**31]) 174 inp, optimize=False, out_type=dtypes.int32) 247 inp = constant_op.constant( 249 squeezed = array_ops.expand_dims(inp, 1) 251 err = gradient_checker.compute_gradient_error(inp, [4, 2], squeezed, 258 inp = constant_op.constant(7) 259 self.assertAllEqual([7], array_ops.expand_dims(inp, 0).eval()) 260 self.assertAllEqual([7], array_ops.expand_dims(inp, -1).eval()) [all …]
|
D | slice_op_test.py | 37 inp = np.random.rand(4, 4).astype("f") 40 a = constant_op.constant(inp, shape=[4, 4], dtype=dtypes.float32) 43 self.assertAllEqual(slice_val, inp[2, k:k]) 46 inp = np.random.rand(4, 4).astype("i") 49 a = constant_op.constant(inp, shape=[4, 4], dtype=dtypes.int32) 52 self.assertAllEqual(slice_val, inp[2, k:k]) 119 inp = np.random.rand(4, 4, 4, 4).astype("f") 120 a = constant_op.constant(inp, shape=[4, 4, 4, 4], dtype=dtypes.float32) 125 self.assertAllEqual(inp, self.evaluate(slice_explicit_t)) 126 self.assertAllEqual(inp, self.evaluate(slice_implicit_t)) [all …]
|
/external/tensorflow/tensorflow/cc/ops/ |
D | const_op.cc | 56 NodeBuilder::NodeOut AsNodeOut(const Scope& scope, const Input& inp) { in AsNodeOut() argument 57 if (!inp.status().ok()) { in AsNodeOut() 58 scope.UpdateStatus(inp.status()); in AsNodeOut() 59 return NodeBuilder::NodeOut(inp.node(), inp.index()); in AsNodeOut() 61 if (inp.node()) { in AsNodeOut() 62 return NodeBuilder::NodeOut(inp.node(), inp.index()); in AsNodeOut() 64 if (!inp.node_name().empty()) { in AsNodeOut() 65 return NodeBuilder::NodeOut(inp.node_name(), inp.index(), inp.data_type()); in AsNodeOut() 68 Const(scope.NewSubScope("Const"), Input::Initializer(inp.tensor()))}; in AsNodeOut() 73 const InputList& inp) { in AsNodeOutList() argument [all …]
|
/external/ppp/pppd/ |
D | eap.c | 115 static void eap_input __P((int unit, u_char *inp, int inlen)); 119 static int eap_printpkt __P((u_char *inp, int inlen, 345 b64enc(bs, inp, inlen, outp) in b64enc() argument 347 u_char *inp; 354 bs->bs_bits = (bs->bs_bits << 8) | *inp++; 393 b64dec(bs, inp, inlen, outp) in b64dec() argument 395 u_char *inp; 403 if ((cp = strchr(base64, *inp++)) == NULL) 1248 write_pseudonym(esp, inp, len, id) in write_pseudonym() argument 1250 u_char *inp; [all …]
|
/external/grpc-grpc/test/core/util/ |
D | fuzzer_util.cc | 28 uint8_t grpc_fuzzer_get_next_byte(input_stream* inp) { in grpc_fuzzer_get_next_byte() argument 29 if (inp->cur == inp->end) { in grpc_fuzzer_get_next_byte() 32 return *inp->cur++; in grpc_fuzzer_get_next_byte() 35 char* grpc_fuzzer_get_next_string(input_stream* inp, bool* special) { in grpc_fuzzer_get_next_string() argument 45 c = static_cast<char>(grpc_fuzzer_get_next_byte(inp)); in grpc_fuzzer_get_next_string() 57 uint32_t grpc_fuzzer_get_next_uint32(input_stream* inp) { in grpc_fuzzer_get_next_uint32() argument 58 uint8_t b = grpc_fuzzer_get_next_byte(inp); in grpc_fuzzer_get_next_uint32() 62 b = grpc_fuzzer_get_next_byte(inp); in grpc_fuzzer_get_next_uint32() 66 b = grpc_fuzzer_get_next_byte(inp); in grpc_fuzzer_get_next_uint32() 70 b = grpc_fuzzer_get_next_byte(inp); in grpc_fuzzer_get_next_uint32() [all …]
|
/external/boringssl/src/crypto/cipher_extra/asm/ |
D | chacha20_poly1305_x86_64.pl | 84 my ($oup,$inp,$inl,$adp,$keyp,$itr1,$itr2)=("%rdi","%rsi","%rbx","%rcx","%r9","%rcx","%r8"); 262 $code.="movdqu 0*16 + $offset($inp), $A3 263 movdqu 1*16 + $offset($inp), $B3 264 movdqu 2*16 + $offset($inp), $C3 265 movdqu 3*16 + $offset($inp), $D3 279 movdqu 0*16 + $offset($inp), $temp 282 movdqu 1*16 + $offset($inp), $temp 285 movdqu 2*16 + $offset($inp), $temp 288 movdqu 3*16 + $offset($inp), $temp 507 mov $inp, $itr2 [all …]
|
/external/tensorflow/tensorflow/python/framework/ |
D | auto_control_deps.py | 207 inp = switch_op.inputs[0] 208 if inp.dtype == dtypes_module.resource and inp.op.type == "Switch": 209 self._process_switch(inp.op, ops_which_must_run, 219 if inp in last_op_using_resource_tensor: 221 …switch_op._add_control_input(last_op_using_resource_tensor[inp]) # pylint: disable=protected-acce… 223 last_op_using_resource_tensor[inp] = new_merge[0].op 224 if inp in merge_for_resource: 225 … merge_for_resource[inp]._add_control_input(new_merge[0].op) # pylint: disable=protected-access 299 for inp in o.inputs: 300 if inp in last_op_using_resource_tensor: [all …]
|
/external/libchrome/third_party/markupsafe/ |
D | _speedups.c | 59 Py_UNICODE *inp = PyUnicode_AS_UNICODE(in); in escape_unicode() local 66 while (*(inp) || inp < inp_end) { in escape_unicode() 67 if (*inp < ESCAPED_CHARS_TABLE_SIZE) { in escape_unicode() 68 delta += escaped_chars_delta_len[*inp]; in escape_unicode() 69 erepl += !!escaped_chars_delta_len[*inp]; in escape_unicode() 71 ++inp; in escape_unicode() 85 inp = PyUnicode_AS_UNICODE(in); in escape_unicode() 88 next_escp = inp; in escape_unicode() 98 if (next_escp > inp) { in escape_unicode() 100 Py_UNICODE_COPY(outp, inp, next_escp-inp); in escape_unicode() [all …]
|
/external/tensorflow/tensorflow/core/kernels/ |
D | concat_lib_cpu.h | 60 std::vector<const T*> inp; in ConcatCPUImpl() local 61 inp.reserve(num_inputs); in ConcatCPUImpl() 63 inp.push_back(&(*input)(0, 0)); in ConcatCPUImpl() 69 copier.Copy(out, inp[j], j, size); in ConcatCPUImpl() 71 inp[j] += size; in ConcatCPUImpl() 94 const T* inp = &(*inputs[j])(skipped_rows, 0); in ConcatCPUImpl() local 97 inp += offset; in ConcatCPUImpl() 102 copier.Copy(out, inp, j, size); in ConcatCPUImpl() 112 std::vector<const T*> inp; in ConcatCPUImpl() local 113 inp.reserve(num_inputs); in ConcatCPUImpl() [all …]
|
/external/boringssl/src/crypto/fipsmodule/sha/asm/ |
D | sha256-armv4.pl | 63 $inp="r1"; $t4="r1"; 88 @ ldr $t1,[$inp],#4 @ $i 90 str $inp,[sp,#17*4] @ make room for $t4 99 @ ldrb $t1,[$inp,#3] @ $i 101 ldrb $t2,[$inp,#2] 102 ldrb $t0,[$inp,#1] 104 ldrb $t2,[$inp],#4 107 str $inp,[sp,#17*4] @ make room for $t4 131 ldr $t1,[$inp],#4 @ prefetch 133 ldrb $t1,[$inp,#3] [all …]
|
/external/grpc-grpc/test/core/security/ |
D | alts_credentials_fuzzer.cc | 46 input_stream* inp, grpc_alts_credentials_options* options) { in read_target_service_accounts() argument 47 size_t n = grpc_fuzzer_get_next_byte(inp); in read_target_service_accounts() 49 char* service_account = grpc_fuzzer_get_next_string(inp, nullptr); in read_target_service_accounts() 73 input_stream inp = {data, data + size}; in LLVMFuzzerTestOneInput() local 76 while (inp.cur != inp.end) { in LLVMFuzzerTestOneInput() 77 bool enable_untrusted_alts = grpc_fuzzer_get_next_byte(&inp) & 0x01; in LLVMFuzzerTestOneInput() 79 grpc_fuzzer_get_next_byte(&inp) & 0x01 in LLVMFuzzerTestOneInput() 80 ? grpc_fuzzer_get_next_string(&inp, nullptr) in LLVMFuzzerTestOneInput() 82 if (grpc_fuzzer_get_next_byte(&inp) & 0x01) { in LLVMFuzzerTestOneInput() 86 read_target_service_accounts(&inp, options); in LLVMFuzzerTestOneInput()
|