HomeSort by relevance Sort by last modified time
    Searched refs:Flag (Results 176 - 200 of 991) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
c4_17pf.h 111 Flag * pOverflow /* (o) : Flag set when overflow occurs */
cbsearch.h 123 Flag *pOverflow /* o : Flag set when overflow occurs */
enc_lag3.h 111 Word16 delta_flag, /* i : Flag for 1st (or 3rd) subframe */
112 Word16 flag4, /* i : Flag for encoding with 4 bits */
113 Flag *pOverflow
l_comp.cpp 142 Word32 L_Comp(Word16 hi, Word16 lo, Flag *pOverflow)
l_extract.cpp 42 pointer to overflow flag into the function instead of using a
43 global flag. Changed names of function parameters for clarity.
93 pOverflow = pointer to overflow (Flag)
161 Flag *pOverflow)
lpc.h 135 Flag *pOverflow
pre_big.h 120 Flag *pOverflow /* o : overflow indicator */
s10_8pf.h 47 Description: Changed function prototype; pointer to overflow flag is passed
119 Flag *pOverflow /* i/o : Overflow flag */
set_sign.h 43 overflow flag is passed in as a parameter.
118 Flag *pOverflow /* i/o : overflow flag */
  /hardware/interfaces/gnss/1.0/
IGnssBatching.hal 46 enum Flag : uint8_t {
48 * If this flag is set, the hardware implementation
52 * If the flag is not set, the hardware implementation must drop
68 bitfield<Flag> flags;
  /external/tensorflow/tensorflow/compiler/xla/legacy_flags/
parse_flags_from_env_test.cc 44 std::vector<tensorflow::Flag> empty_flag_list;
61 std::vector<tensorflow::Flag> flag_list = {
62 tensorflow::Flag("simple", &simple, ""),
63 tensorflow::Flag("with_value", &with_value, ""),
64 tensorflow::Flag("embedded_quotes", &embedded_quotes, ""),
65 tensorflow::Flag("single_quoted", &single_quoted, ""),
66 tensorflow::Flag("double_quoted", &double_quoted, ""),
138 {"--int_flag=3", "--int_flag=2", "2\n"}, // flag beats environment
169 const std::vector<tensorflow::Flag> flag_list = {
170 tensorflow::Flag("recursing", &recursing
    [all...]
  /external/webrtc/webrtc/base/
flags.h 15 // where xxx is the flag type. Flags are referred to via FLAG_yyy,
16 // where yyy is the flag name. For intialization and iteration of flags,
18 // flag, see the Flag class.
39 // flag is defined via: DEFINE_bool(flag, "false", "some comment");.
71 // Each flag can be accessed programmatically via a Flag object.
72 class Flag {
77 Flag(const char* file, const char* name, const char* comment
    [all...]
  /frameworks/base/tools/aapt2/
Flags.cpp 39 flags_.push_back(Flag{name.to_string(), description.to_string(), func, true, 1, false});
51 flags_.push_back(Flag{name.to_string(), description.to_string(), func, true, 1, false});
63 flags_.push_back(Flag{name.to_string(), description.to_string(), func, false, 1, false});
75 flags_.push_back(Flag{name.to_string(), description.to_string(), func, false, 1, false});
87 flags_.push_back(Flag{name.to_string(), description.to_string(), func, false, 1, false});
98 flags_.push_back(Flag{name.to_string(), description.to_string(), func, false, 0, false});
106 for (const Flag& flag : flags_) {
107 if (flag.required) {
108 *out << " " << flag.name << " arg"
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/tools/
gen_op_registration_main.cc 32 using tensorflow::Flag;
38 std::vector<tensorflow::Flag> flag_list = {
39 Flag(kInputModelFlag, input_model, "path to the tflite model"),
40 Flag(kOutputRegistrationFlag, output_registration,
42 Flag(kTfLitePathFlag, tflite_path, "Path to tensorflow lite dir"),
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
Tcp4Proto.h 148 UINT8 Flag; ///< TCP header flags
149 UINT16 Urg; ///< Valid if URG flag is set.
311 // Check whether Flag is on
313 #define TCP_FLG_ON(Value, Flag) ((BOOLEAN) (((Value) & (Flag)) != 0))
316 // Set and Clear operation on a Flag
318 #define TCP_SET_FLG(Value, Flag) ((Value) |= (Flag))
319 #define TCP_CLEAR_FLG(Value, Flag) ((Value) &= ~(Flag))
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
TcpProto.h 180 // Check whether Flag is on
182 #define TCP_FLG_ON(Value, Flag) ((BOOLEAN) (((Value) & (Flag)) != 0))
184 // Set and Clear operation on a Flag
186 #define TCP_SET_FLG(Value, Flag) ((Value) |= (Flag))
187 #define TCP_CLEAR_FLG(Value, Flag) ((Value) &= ~(Flag))
205 #define TCP_TIMER_ON(Flag, Timer) ((Flag) & (1 << (Timer)))
    [all...]
  /external/clang/include/clang/Lex/
Token.h 232 /// \brief Set the specified flag.
233 void setFlag(TokenFlags Flag) {
234 Flags |= Flag;
237 /// \brief Get the specified flag.
238 bool getFlag(TokenFlags Flag) const {
239 return (Flags & Flag) != 0;
242 /// \brief Unset the specified flag.
243 void clearFlag(TokenFlags Flag) {
244 Flags &= ~Flag;
255 /// \brief Set a flag to either true or false
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Lex/
Token.h 232 /// \brief Set the specified flag.
233 void setFlag(TokenFlags Flag) {
234 Flags |= Flag;
237 /// \brief Get the specified flag.
238 bool getFlag(TokenFlags Flag) const {
239 return (Flags & Flag) != 0;
242 /// \brief Unset the specified flag.
243 void clearFlag(TokenFlags Flag) {
244 Flags &= ~Flag;
255 /// \brief Set a flag to either true or false
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Lex/
Token.h 232 /// \brief Set the specified flag.
233 void setFlag(TokenFlags Flag) {
234 Flags |= Flag;
237 /// \brief Get the specified flag.
238 bool getFlag(TokenFlags Flag) const {
239 return (Flags & Flag) != 0;
242 /// \brief Unset the specified flag.
243 void clearFlag(TokenFlags Flag) {
244 Flags &= ~Flag;
255 /// \brief Set a flag to either true or false
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/WinNtGopDxe/
WinNtGopScreen.c 60 IN BOOLEAN Flag
72 Private->RightShift = Flag;
74 Private->LeftShift = Flag;
79 Private->LeftShift = Flag;
83 Private->RightShift = Flag;
88 Private->RightCtrl= Flag;
90 Private->LeftCtrl = Flag;
95 Private->LeftCtrl = Flag;
99 Private->RightCtrl = Flag;
103 Private->LeftLogo = Flag;
    [all...]
  /external/libbrillo/brillo/
flag_helper.cc 21 Flag::Flag(const char* name,
31 class HelpFlag : public brillo::Flag {
33 HelpFlag() : Flag("help", "false", "Show this help message", true) {}
45 : Flag(name, default_value, help, visible),
76 : Flag(name, default_value, help, visible), value_(value) {
92 : Flag(name, default_value, help, visible), value_(value) {
108 : Flag(name, default_value, help, visible), value_(value) {
124 : Flag(name, default_value, help, visible), value_(value) {
140 : Flag(name, default_value, help, visible), value_(value)
219 Flag* flag = df_it->second.get(); local
254 const Flag* flag = pair.second.get(); local
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Protocol/
EbcVmTest.h 50 #define VMFLAGS_CC 0x0001 // condition flag
57 #define VMFLAG_SET(pVM, Flag) (pVM->Flags |= (Flag))
58 #define VMFLAG_ISSET(pVM, Flag) ((pVM->Flags & (Flag)) ? 1 : 0)
59 #define VMFLAG_CLEAR(pVM, Flag) (pVM->Flags &= ~(Flag))
  /external/tensorflow/tensorflow/contrib/lite/toco/
model_cmdline_flags.cc 31 // "batch" flag only exists internally
42 using tensorflow::Flag;
43 std::vector<tensorflow::Flag> flags = {
44 Flag("input_array", parsed_flags.input_array.bind(),
49 Flag("input_arrays", parsed_flags.input_arrays.bind(),
53 Flag("output_array", parsed_flags.output_array.bind(),
59 Flag("output_arrays", parsed_flags.output_arrays.bind(),
64 Flag("input_shape", parsed_flags.input_shape.bind(),
70 Flag("input_shapes", parsed_flags.input_shapes.bind(),
75 Flag("input_data_type", parsed_flags.input_data_type.bind()
    [all...]
  /external/tensorflow/tensorflow/contrib/tensorboard/db/
loader.cc 54 std::vector<Flag> flag_list = {
55 Flag("db", &path, "Path of SQLite DB file"),
56 Flag("events", &events, "TensorFlow record proto event log file"),
57 Flag("experiment_name", &experiment_name, "The DB experiment_name value"),
58 Flag("run_name", &run_name, "The DB run_name value"),
59 Flag("user_name", &user_name, "The DB user_name value"),
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_testlib_server.cc 48 // Split each entry in the flag into 2 pieces, separated by "|".
85 std::vector<tensorflow::Flag> flag_list = {
86 tensorflow::Flag("tf_jobs", &job_spec, "job specification"),
87 tensorflow::Flag("tf_job", &job_name, "job name"),
88 tensorflow::Flag("tf_task", &task_index, "task index"),
89 tensorflow::Flag("num_cpus", &num_cpus, "number of CPUs"),
90 tensorflow::Flag("num_gpus", &num_gpus, "number of GPUs"),

Completed in 703 milliseconds

1 2 3 4 5 6 78 91011>>