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

1 2 3 4 5 6 7 8 91011>>

  /external/epid-sdk/ext/ipp/sources/ippcp/
pcprij128safe2.h 54 #define TRANSPOSE(out, inp) \
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...]
pcprij128safe.h 65 void TransformNative2Composite(Ipp8u out[16], const Ipp8u inp[16]);
66 void TransformComposite2Native(Ipp8u out[16], const Ipp8u inp[16]);
72 void AddRoundKey(Ipp8u out[], const Ipp8u inp[], const Ipp8u pKey[]);
81 void TransformNative2Composite(Ipp8u out[16], const Ipp8u inp[16]);
82 void TransformComposite2Native(Ipp8u out[16], const Ipp8u inp[16]);
85 __INLINE void AddRoundKey(Ipp8u out[16], const Ipp8u inp[16], const Ipp8u rkey[16])
87 ((Ipp64u*)out)[0] = ((Ipp64u*)inp)[0] ^ ((Ipp64u*)rkey)[0];
88 ((Ipp64u*)out)[1] = ((Ipp64u*)inp)[1] ^ ((Ipp64u*)rkey)[1];
  /external/libxaac/decoder/armv7/
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
    [all...]
  /external/grpc-grpc/test/core/util/
fuzzer_util.cc 28 uint8_t grpc_fuzzer_get_next_byte(input_stream* inp) {
29 if (inp->cur == inp->end) {
32 return *inp->cur++;
35 char* grpc_fuzzer_get_next_string(input_stream* inp, bool* special) {
45 c = static_cast<char>(grpc_fuzzer_get_next_byte(inp));
57 uint32_t grpc_fuzzer_get_next_uint32(input_stream* inp) {
58 uint8_t b = grpc_fuzzer_get_next_byte(inp);
62 b = grpc_fuzzer_get_next_byte(inp);
66 b = grpc_fuzzer_get_next_byte(inp);
    [all...]
fuzzer_util.h 37 uint8_t grpc_fuzzer_get_next_byte(input_stream* inp);
41 char* grpc_fuzzer_get_next_string(input_stream* inp, bool* special);
44 uint32_t grpc_fuzzer_get_next_uint32(input_stream* inp);
  /external/tensorflow/tensorflow/cc/ops/
const_op.cc 56 NodeBuilder::NodeOut AsNodeOut(const Scope& scope, const Input& inp) {
57 if (!inp.status().ok()) {
58 scope.UpdateStatus(inp.status());
59 return NodeBuilder::NodeOut(inp.node(), inp.index());
61 if (inp.node()) {
62 return NodeBuilder::NodeOut(inp.node(), inp.index());
64 if (!inp.node_name().empty()) {
65 return NodeBuilder::NodeOut(inp.node_name(), inp.index(), inp.data_type())
    [all...]
  /external/libxaac/decoder/
ixheaacd_qmf_poly.h 32 VOID ixheaacd_cmplx_anal_fft_p2(FLOAT32 *inp, FLOAT32 *out, WORD32 n_points);
34 VOID ixheaacd_cmplx_anal_fft_p3(FLOAT32 *inp, FLOAT32 *out, WORD32 n_points);
36 VOID ixheaacd_real_synth_fft_p2(FLOAT32 *inp, FLOAT32 *out, WORD32 n_points);
38 VOID ixheaacd_real_synth_fft_p3(FLOAT32 *inp, FLOAT32 *out, WORD32 n_points);
  /external/grpc-grpc/test/core/security/
alts_credentials_fuzzer.cc 46 input_stream* inp, grpc_alts_credentials_options* options) {
47 size_t n = grpc_fuzzer_get_next_byte(inp);
49 char* service_account = grpc_fuzzer_get_next_string(inp, nullptr);
73 input_stream inp = {data, data + size}; local
76 while (inp.cur != inp.end) {
77 bool enable_untrusted_alts = grpc_fuzzer_get_next_byte(&inp) & 0x01;
79 grpc_fuzzer_get_next_byte(&inp) & 0x01
80 ? grpc_fuzzer_get_next_string(&inp, nullptr)
82 if (grpc_fuzzer_get_next_byte(&inp) & 0x01)
    [all...]
  /external/tensorflow/tensorflow/python/eager/
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]
    [all...]
  /external/toolchain-utils/bestflags/
pipeline_process_test.py 61 inp = manager.Queue()
65 2, 'testing', {}, TEST_STAGE, inp, MockHelper, MockWorker, output)
68 inp.put(MockTask(TEST_STAGE, 1))
69 inp.put(MockTask(TEST_STAGE, 1))
70 inp.put(MockTask(TEST_STAGE, 2))
71 inp.put(pipeline_process.POISONPILL)
  /external/tensorflow/tensorflow/python/framework/
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-access
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
    [all...]
  /external/grpc-grpc/test/core/end2end/fuzzers/
api_fuzzer.cc 74 static void end(input_stream* inp) { inp->cur = inp->end; }
76 static void read_buffer(input_stream* inp, char** buffer, size_t* length,
78 *length = grpc_fuzzer_get_next_byte(inp);
81 *length = grpc_fuzzer_get_next_byte(inp);
87 (*buffer)[i] = static_cast<char>(grpc_fuzzer_get_next_byte(inp));
97 static grpc_slice read_string_like_slice(input_stream* inp) {
99 char* s = grpc_fuzzer_get_next_string(inp, &special);
105 static grpc_slice read_buffer_like_slice(input_stream* inp) {
697 input_stream inp = {data, data + size}; local
    [all...]
  /external/tensorflow/tensorflow/contrib/batching/python/ops/
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/libhevc/common/
ihevc_trans_macros.h 37 #define QUANT(out, inp, quant_coeff, qp_div, log2_trans_size, q_add) \
51 sign = (inp)<0 ? -1:1; \
53 tmp = (LWORD64)(abs(inp)); \
62 #define QUANT_HBD(out, inp, quant_coeff, qp_div, log2_trans_size, q_add, bit_depth) \
76 sign = (inp)<0 ? -1:1; \
78 tmp = (LWORD64)(abs(inp)); \
87 #define QUANT_NO_WEIGHTMAT(out, inp, quant_coeff, qp_div, log2_trans_size, q_add) \
101 sign = (inp)<0 ? -1:1; \
103 tmp = (WORD32)(abs(inp)); \
112 #define QUANT_NO_WEIGHTMAT_HBD(out, inp, quant_coeff, qp_div, log2_trans_size, q_add, bit_depth)
    [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
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...]
  /external/ltp/testcases/kernel/syscalls/select/
select.h 60 #define select_sys_select(n, inp, outp, exp, tvp) \
61 return ltp_syscall(__NR_select, n, inp, outp, exp, tvp)
70 #define select_sys_select(n, inp, outp, exp, tvp) \
74 arg._inp = (long)inp; \
84 #define select_sys__newselect(n, inp, outp, exp, tvp) \
85 return ltp_syscall(__NR__newselect, n, inp, outp, exp, tvp)
87 #define select_sys_pselect6(n, inp, outp, exp, tvp) \
93 ret = ltp_syscall(__NR_pselect6, n, inp, outp, exp, &ts, NULL); \
  /external/oj-libjdwp/etc/
jdigen.py 54 with open(args[1], 'r+') as inp:
55 for l in inp.readlines():
  /external/tensorflow/tensorflow/core/kernels/
cast_op_impl_bfloat.cc 33 return [](OpKernelContext* ctx, const Tensor& inp, Tensor* out,
37 inp.flat<bfloat16>(), truncate);
concat_lib_cpu.h 60 std::vector<const T*> inp; local
61 inp.reserve(num_inputs);
63 inp.push_back(&(*input)(0, 0));
69 copier.Copy(out, inp[j], j, size);
71 inp[j] += size;
94 const T* inp = &(*inputs[j])(skipped_rows, 0);
97 inp += offset;
102 copier.Copy(out, inp, j, size);
112 std::vector<const T*> inp;
113 inp.reserve(num_inputs)
151 std::vector<const T*> inp; local
    [all...]
  /external/boringssl/src/crypto/chacha/asm/
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
    [all...]
  /build/make/tools/releasetools/
build_super_image.py 147 def BuildSuperImageFromExtractedTargetFiles(inp, out):
148 info_dict = common.LoadInfoDict(inp)
153 image_path = os.path.join(inp, "IMAGES", "system_other.img")
159 image_path = os.path.join(inp, "IMAGES", "{}.img".format(partition))
172 def BuildSuperImageFromTargetFiles(inp, out):
173 input_tmp = common.UnzipTemp(inp, UNZIP_PATTERN)
177 def BuildSuperImage(inp, out):
179 if isinstance(inp, dict):
181 return BuildSuperImageFromDict(inp, out)
183 if isinstance(inp, str)
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
atomicops_internals_x86_gcc.cc 48 #define cpuid(a, b, c, d, inp) \
52 : "=a" (a), "=D" (b), "=c" (c), "=d" (d) : "a" (inp))
54 #define cpuid(a, b, c, d, inp) \
58 : "=a" (a), "=D" (b), "=c" (c), "=d" (d) : "a" (inp))
  /external/tensorflow/tensorflow/core/grappler/optimizers/
debug_stripper.cc 39 for (string& inp : *node.mutable_input()) {
40 if (!IsControlInput(inp)) {
41 inp = AsControlDependency(NodeName(inp));
  /external/tensorflow/tensorflow/python/debug/lib/
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
    [all...]
  /external/python/cpython2/Lib/test/
test_uu.py 24 inp = cStringIO.StringIO(plaintext)
26 uu.encode(inp, out, "t1")
28 inp = cStringIO.StringIO(plaintext)
30 uu.encode(inp, out, "t1", 0644)
34 inp = cStringIO.StringIO(encodedtextwrapped % (0666, "t1"))
36 uu.decode(inp, out)
38 inp = cStringIO.StringIO(
44 uu.decode(inp, out)
48 inp = cStringIO.StringIO("begin 644 t1\n" + encodedtext)
51 uu.decode(inp, out
    [all...]

Completed in 2355 milliseconds

1 2 3 4 5 6 7 8 91011>>