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

1 2 3 4 5 6 7 8 91011>>

  /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/u-boot/drivers/crypto/rsa_mod_exp/
mod_exp_uclass.c 19 const struct mod_exp_ops *ops = device_get_ops(dev); local
21 if (!ops->mod_exp)
24 return ops->mod_exp(dev, sig, sig_len, node, out);
  /external/u-boot/drivers/misc/
pwrseq-uclass.c 12 struct pwrseq_ops *ops = pwrseq_get_ops(dev); local
14 if (!ops->set_power)
17 return ops->set_power(dev, enable);
  /external/u-boot/drivers/ram/
ram-uclass.c 16 struct ram_ops *ops = ram_get_ops(dev); local
18 if (!ops->get_info)
21 return ops->get_info(dev, info);
  /external/u-boot/drivers/scsi/
scsi-uclass.c 17 struct scsi_ops *ops = scsi_get_ops(dev); local
19 if (!ops->exec)
22 return ops->exec(dev, pccb);
27 struct scsi_ops *ops = scsi_get_ops(dev); local
29 if (!ops->bus_reset)
32 return ops->bus_reset(dev);
  /external/u-boot/drivers/spmi/
spmi-uclass.c 16 const struct dm_spmi_ops *ops = dev_get_driver_ops(dev); local
18 if (!ops || !ops->read)
21 return ops->read(dev, usid, pid, reg);
27 const struct dm_spmi_ops *ops = dev_get_driver_ops(dev); local
29 if (!ops || !ops->write)
32 return ops->write(dev, usid, pid, reg, value);
  /external/u-boot/drivers/thermal/
thermal-uclass.c 18 const struct dm_thermal_ops *ops = device_get_ops(dev); local
20 if (!ops->get_temp)
23 return ops->get_temp(dev, temp);
  /external/u-boot/drivers/video/
backlight-uclass.c 13 const struct backlight_ops *ops = backlight_get_ops(dev); local
15 if (!ops->enable)
18 return ops->enable(dev);
panel-uclass.c 13 struct panel_ops *ops = panel_get_ops(dev); local
15 if (!ops->enable_backlight)
18 return ops->enable_backlight(dev);
  /external/avb/libavb_ab/
avb_ab_ops.h 49 AvbOps* ops; member in struct:AvbABOps
  /external/tensorflow/tensorflow/cc/ops/
while_loop.h 19 #include "tensorflow/cc/framework/ops.h"
23 namespace ops { namespace in namespace:tensorflow
71 } // namespace ops
  /external/tensorflow/tensorflow/lite/experimental/micro/kernels/
all_ops_resolver.h 19 namespace ops { namespace in namespace:tflite
31 } // namespace ops
all_ops_resolver.cc 16 namespace ops { namespace in namespace:tflite
42 } // namespace ops
  /external/tensorflow/tensorflow/lite/kernels/
lstm_eval.h 22 namespace ops { namespace in namespace:tflite
89 } // namespace ops
register.cc 20 namespace ops { namespace in namespace:tflite
146 "Regular TensorFlow ops are not supported by this interpreter. Make sure "
158 // Return the NULL Op for all ops whose name start with "Flex", allowing
379 // custom ops aren't always included by default.
380 // AddCustom("Mfcc", tflite::ops::custom::Register_MFCC());
382 // tflite::ops::custom::Register_AUDIO_SPECTROGRAM());
384 tflite::ops::custom::Register_DETECTION_POSTPROCESS());
386 // WARNING: Control flow ops are experimental and subject to change.
387 AddCustom("Experimental_If", tflite::ops::custom::Register_IF());
388 AddCustom("Experimental_While", tflite::ops::custom::Register_WHILE())
    [all...]
register.h 23 namespace ops { namespace in namespace:tflite
36 } // namespace ops
  /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);
  /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...]
generic_delay_timer.c 18 static timer_ops_t ops; variable
33 ops.get_timer_value = get_timer_value;
34 ops.clk_mult = mult;
35 ops.clk_div = div;
37 timer_init(&ops);
  /external/avb/libavb_atx/
avb_atx_ops.h 47 AvbOps* ops; member in struct:AvbAtxOps
  /external/libese/apps/boot/tests/
ese_operations_wrapper.h 30 static const struct EseOperations ops; member in class:EseOperationsWrapperData
  /external/libese/libese-teq1/tests/
ese_operations_wrapper.h 30 static const struct EseOperations ops; member in class:EseOperationsWrapperData
  /external/tensorflow/tensorflow/contrib/lite/kernels/
register.cc 20 namespace ops { namespace in namespace:tflite
127 "Regular TensorFlow ops are not supported by this interpreter. Make sure "
139 // Return the NULL Op for all ops whose name start with "Eager", allowing
255 // custom ops aren't always included by default.
256 AddCustom("Mfcc", tflite::ops::custom::Register_MFCC());
258 tflite::ops::custom::Register_AUDIO_SPECTROGRAM());
259 AddCustom("LayerNormLstm", tflite::ops::custom::Register_LAYER_NORM_LSTM());
260 AddCustom("Relu1", tflite::ops::custom::Register_RELU_1());
262 tflite::ops::custom::Register_DETECTION_POSTPROCESS());
267 } // namespace ops
    [all...]

Completed in 1247 milliseconds

1 2 3 4 5 6 7 8 91011>>