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

1 2 3 4 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/python/ops/
bitwise_ops.py 22 from tensorflow.python.framework import ops
25 from tensorflow.python.ops.gen_bitwise_ops import *
28 ops.NotDifferentiable("BitwiseAnd")
29 ops.NotDifferentiable("BitwiseOr")
30 ops.NotDifferentiable("BitwiseXor")
31 ops.NotDifferentiable("Invert")
32 ops.NotDifferentiable("PopulationCount")
33 ops.NotDifferentiable("LeftShift")
34 ops.NotDifferentiable("RightShift")
state_grad.py 22 from tensorflow.python.framework import ops
25 # TODO(b/31222613): These ops may be differentiable, and there may be
27 ops.NotDifferentiable("Assign")
30 ops.NotDifferentiable("AssignAdd")
33 ops.NotDifferentiable("AssignSub")
36 ops.NotDifferentiable("ScatterAdd")
39 ops.NotDifferentiable("ScatterSub")
42 ops.NotDifferentiable("ScatterMul")
45 ops.NotDifferentiable("ScatterDiv")
48 ops.NotDifferentiable("ScatterNdUpdate"
    [all...]
sdca_ops.py 23 from tensorflow.python.framework import ops
27 from tensorflow.python.ops.gen_sdca_ops import *
30 ops.NotDifferentiable("SdcaFprint")
31 ops.NotDifferentiable("SdcaOptimizer")
32 ops.NotDifferentiable("SdcaOptimizerV2")
33 ops.NotDifferentiable("SdcaShrinkL1")
data_flow_grad.py 24 from tensorflow.python.framework import ops
25 from tensorflow.python.ops import array_ops
26 from tensorflow.python.ops import data_flow_ops
27 from tensorflow.python.ops import math_ops
30 @ops.RegisterGradient("DynamicPartition")
47 @ops.RegisterGradient("DynamicStitch")
48 @ops.RegisterGradient("ParallelDynamicStitch")
59 if isinstance(grad, ops.IndexedSlices):
67 ops.NotDifferentiable("Queue")
68 ops.NotDifferentiable("QueueEnqueue"
    [all...]
  /external/wpa_supplicant_8/src/pae/
ieee802_1x_secy_ops.c 30 struct ieee802_1x_kay_ctx *ops; local
37 ops = kay->ctx;
38 if (!ops || !ops->enable_protect_frames) {
44 return ops->enable_protect_frames(ops->ctx, enabled);
50 struct ieee802_1x_kay_ctx *ops; local
57 ops = kay->ctx;
58 if (!ops || !ops->enable_encrypt)
70 struct ieee802_1x_kay_ctx *ops; local
90 struct ieee802_1x_kay_ctx *ops; local
118 struct ieee802_1x_kay_ctx *ops; local
138 struct ieee802_1x_kay_ctx *ops; local
159 struct ieee802_1x_kay_ctx *ops; local
180 struct ieee802_1x_kay_ctx *ops; local
201 struct ieee802_1x_kay_ctx *ops; local
222 struct ieee802_1x_kay_ctx *ops; local
242 struct ieee802_1x_kay_ctx *ops; local
262 struct ieee802_1x_kay_ctx *ops; local
282 struct ieee802_1x_kay_ctx *ops; local
302 struct ieee802_1x_kay_ctx *ops; local
322 struct ieee802_1x_kay_ctx *ops; local
344 struct ieee802_1x_kay_ctx *ops; local
367 struct ieee802_1x_kay_ctx *ops; local
388 struct ieee802_1x_kay_ctx *ops; local
409 struct ieee802_1x_kay_ctx *ops; local
430 struct ieee802_1x_kay_ctx *ops; local
451 struct ieee802_1x_kay_ctx *ops; local
474 struct ieee802_1x_kay_ctx *ops; local
497 struct ieee802_1x_kay_ctx *ops; local
524 struct ieee802_1x_kay_ctx *ops; local
    [all...]
  /external/libnl/lib/
cache_mngt.c 43 struct nl_cache_ops *ops; local
45 for (ops = cache_ops; ops; ops = ops->co_next)
46 if (!strcmp(ops->co_name, name))
47 return ops;
54 * @arg ops Cache operations
56 void nl_cache_ops_get(struct nl_cache_ops *ops)
58 ops->co_refcnt++
81 struct nl_cache_ops *ops; local
101 struct nl_cache_ops *ops; local
114 struct nl_cache_ops *ops; local
142 struct nl_cache_ops *ops; local
166 struct nl_cache_ops *ops; local
203 struct nl_cache_ops *ops; local
220 struct nl_cache_ops *ops; local
331 struct nl_cache_ops *ops; local
364 struct nl_cache_ops *ops; local
382 struct nl_cache_ops *ops; local
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/drivers/gpio/
gpio.c 19 static const gpio_ops_t *ops; variable
23 assert(ops);
24 assert(ops->get_direction != 0);
27 return ops->get_direction(gpio);
32 assert(ops);
33 assert(ops->set_direction != 0);
37 ops->set_direction(gpio, direction);
42 assert(ops);
43 assert(ops->get_value != 0);
46 return ops->get_value(gpio)
    [all...]
  /external/u-boot/drivers/pch/
pch-uclass.c 13 struct pch_ops *ops = pch_get_ops(dev); local
16 if (!ops->get_spi_base)
19 return ops->get_spi_base(dev, sbasep);
24 struct pch_ops *ops = pch_get_ops(dev); local
26 if (!ops->set_spi_protect)
29 return ops->set_spi_protect(dev, protect);
34 struct pch_ops *ops = pch_get_ops(dev); local
37 if (!ops->get_gpio_base)
40 return ops->get_gpio_base(dev, gbasep);
45 struct pch_ops *ops = pch_get_ops(dev) local
    [all...]
  /external/libnl/lib/genl/
mngt.c 33 static struct genl_cmd *lookup_cmd(struct genl_ops *ops, int cmd_id)
38 for (i = 0; i < ops->o_ncmds; i++) {
39 cmd = &ops->o_cmds[i];
48 struct genl_ops *ops, struct nl_cache_ops *cache_ops, void *arg)
56 if (!(cmd = lookup_cmd(ops, ghdr->cmd))) {
73 err = nlmsg_parse(nlh, GENL_HDRSIZE(ops->o_hdrsize), tb, cmd->c_maxattr,
85 static int genl_msg_parser(struct nl_cache_ops *ops, struct sockaddr_nl *who,
88 if (ops->co_genl == NULL)
91 return cmd_msg_parser(who, nlh, ops->co_genl, ops, pp)
96 struct genl_ops *ops; local
108 struct genl_ops *ops; local
120 struct genl_ops *ops; local
211 struct genl_ops *ops; local
382 struct genl_ops *ops; local
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/drivers/delay_timer/
delay_timer.c 14 static const timer_ops_t *ops; variable
22 assert(ops != NULL &&
23 (ops->clk_mult != 0) &&
24 (ops->clk_div != 0) &&
25 (ops->get_timer_value != NULL));
29 assert(usec < UINT32_MAX / ops->clk_div);
31 start = ops->get_timer_value();
33 total_delta = (usec * ops->clk_div) / ops->clk_mult;
40 delta = start - ops->get_timer_value(); /* Decreasing counter *
    [all...]
  /external/libnl/lib/route/link/
api.c 55 struct rtnl_link_info_ops *ops; local
57 nl_list_for_each_entry(ops, &info_ops, io_list)
58 if (!strcmp(ops->io_name, name))
59 return ops;
79 struct rtnl_link_info_ops *ops; local
82 if ((ops = __rtnl_link_info_ops_lookup(name)))
83 ops->io_refcnt++;
86 return ops;
91 * @arg ops Link info operations.
93 void rtnl_link_info_ops_put(struct rtnl_link_info_ops *ops)
    [all...]
  /external/libtextclassifier/utils/tflite/
dist_diversification.h 23 namespace ops { namespace in namespace:tflite
29 } // namespace ops
text_encoder.h 26 namespace ops { namespace in namespace:tflite
32 } // namespace ops
token_encoder.h 26 namespace ops { namespace in namespace:tflite
32 } // namespace ops
  /external/mesa3d/src/gallium/auxiliary/pipebuffer/
pb_buffer_fenced.h 73 void (*destroy)( struct pb_fence_ops *ops );
76 void (*fence_reference)( struct pb_fence_ops *ops,
85 int (*fence_signalled)( struct pb_fence_ops *ops,
94 int (*fence_finish)( struct pb_fence_ops *ops,
  /external/skia/src/compute/hs/gen/
main.c 456 hsg_op(struct hsg_op * ops, struct hsg_op const opcode)
460 *ops = opcode;
462 return ops+1;
467 hsg_exit(struct hsg_op * ops)
469 return hsg_op(ops,EXIT());
474 hsg_end(struct hsg_op * ops)
476 return hsg_op(ops,END());
481 hsg_begin(struct hsg_op * ops)
483 return hsg_op(ops,BEGIN());
488 hsg_else(struct hsg_op * ops)
1634 struct hsg_op * ops = ops_begin; local
    [all...]
  /external/skqp/src/compute/hs/gen/
main.c 456 hsg_op(struct hsg_op * ops, struct hsg_op const opcode)
460 *ops = opcode;
462 return ops+1;
467 hsg_exit(struct hsg_op * ops)
469 return hsg_op(ops,EXIT());
474 hsg_end(struct hsg_op * ops)
476 return hsg_op(ops,END());
481 hsg_begin(struct hsg_op * ops)
483 return hsg_op(ops,BEGIN());
488 hsg_else(struct hsg_op * ops)
1634 struct hsg_op * ops = ops_begin; local
    [all...]
  /external/tensorflow/tensorflow/contrib/rpc/python/ops/
rpc_op.py 22 from tensorflow.contrib.rpc.python.ops.gen_rpc_op import rpc
23 from tensorflow.contrib.rpc.python.ops.gen_rpc_op import try_rpc
24 from tensorflow.python.framework import ops
25 ops.NotDifferentiable("Rpc")
26 ops.NotDifferentiable("TryRpc")
  /external/tensorflow/tensorflow/contrib/summary/
summary.py 19 from ops to places other than event log files, rather than propagating protos
48 # ops get executed.
67 from tensorflow.python.ops.summary_ops_v2 import all_summary_ops
68 from tensorflow.python.ops.summary_ops_v2 import always_record_summaries
69 from tensorflow.python.ops.summary_ops_v2 import audio
70 from tensorflow.python.ops.summary_ops_v2 import create_db_writer
71 from tensorflow.python.ops.summary_ops_v2 import create_file_writer
72 from tensorflow.python.ops.summary_ops_v2 import create_summary_file_writer
73 from tensorflow.python.ops.summary_ops_v2 import eval_dir
74 from tensorflow.python.ops.summary_ops_v2 import flus
    [all...]
  /external/tensorflow/tensorflow/contrib/distributions/
__init__.py 15 """Classes representing statistical distributions and ops for working with them.
29 from tensorflow.contrib.distributions.python.ops import bijectors
30 from tensorflow.contrib.distributions.python.ops.autoregressive import *
31 from tensorflow.contrib.distributions.python.ops.batch_reshape import *
32 from tensorflow.contrib.distributions.python.ops.binomial import *
33 from tensorflow.contrib.distributions.python.ops.cauchy import *
34 from tensorflow.contrib.distributions.python.ops.chi2 import *
35 from tensorflow.contrib.distributions.python.ops.conditional_distribution import *
36 from tensorflow.contrib.distributions.python.ops.conditional_transformed_distribution import *
37 from tensorflow.contrib.distributions.python.ops.deterministic import
    [all...]
  /external/u-boot/drivers/video/
display-uclass.c 14 struct dm_display_ops *ops = display_get_ops(dev); local
16 if (!ops || !ops->read_edid)
18 return ops->read_edid(dev, buf, buf_size);
24 struct dm_display_ops *ops = display_get_ops(dev); local
28 if (!ops || !ops->enable)
30 ret = ops->enable(dev, panel_bpp, timing);
42 struct dm_display_ops *ops = display_get_ops(dev); local
47 if (ops && ops->read_timing
    [all...]
  /external/u-boot/drivers/watchdog/
wdt-uclass.c 15 const struct wdt_ops *ops = device_get_ops(dev); local
17 if (!ops->start)
20 return ops->start(dev, timeout_ms, flags);
25 const struct wdt_ops *ops = device_get_ops(dev); local
27 if (!ops->stop)
30 return ops->stop(dev);
35 const struct wdt_ops *ops = device_get_ops(dev); local
37 if (!ops->reset)
40 return ops->reset(dev);
46 const struct wdt_ops *ops; local
    [all...]
  /external/tensorflow/tensorflow/python/ops/ragged/
__init__.py 17 This package defines ops for manipulating ragged tensors (`tf.RaggedTensor`),
31 from tensorflow.python.ops.ragged import ragged_array_ops
32 from tensorflow.python.ops.ragged import ragged_batch_gather_ops
33 from tensorflow.python.ops.ragged import ragged_batch_gather_with_default_op
34 from tensorflow.python.ops.ragged import ragged_concat_ops
35 from tensorflow.python.ops.ragged import ragged_conversion_ops
36 from tensorflow.python.ops.ragged import ragged_dispatch
37 from tensorflow.python.ops.ragged import ragged_factory_ops
38 from tensorflow.python.ops.ragged import ragged_functional_ops
39 from tensorflow.python.ops.ragged import ragged_gather_op
    [all...]
  /external/tensorflow/tensorflow/python/ops/linalg/
linalg.py 23 from tensorflow.python.ops.linalg import adjoint_registrations as _adjoint_registrations
24 from tensorflow.python.ops.linalg import cholesky_registrations as _cholesky_registrations
25 from tensorflow.python.ops.linalg import inverse_registrations as _inverse_registrations
26 from tensorflow.python.ops.linalg import linear_operator_algebra as _linear_operator_algebra
27 from tensorflow.python.ops.linalg import matmul_registrations as _matmul_registrations
28 from tensorflow.python.ops.linalg.linalg_impl import *
29 from tensorflow.python.ops.linalg.linear_operator import *
30 from tensorflow.python.ops.linalg.linear_operator_block_diag import *
31 from tensorflow.python.ops.linalg.linear_operator_circulant import *
32 from tensorflow.python.ops.linalg.linear_operator_composition import
    [all...]
  /external/u-boot/drivers/pwm/
pwm-uclass.c 13 struct pwm_ops *ops = pwm_get_ops(dev); local
15 if (!ops->set_invert)
18 return ops->set_invert(dev, channel, polarity);
24 struct pwm_ops *ops = pwm_get_ops(dev); local
26 if (!ops->set_config)
29 return ops->set_config(dev, channel, period_ns, duty_ns);
34 struct pwm_ops *ops = pwm_get_ops(dev); local
36 if (!ops->set_enable)
39 return ops->set_enable(dev, channel, enable);

Completed in 582 milliseconds

1 2 3 4 5 6 7 8 91011>>