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

1 2 3 4 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/tools/mlpbtxt/
frommlpbtxt.cc 32 std::vector<Flag> flag_list = {
33 Flag("in", &FLAGS_in, "Input multi-line proto text (.mlpbtxt) file name"),
34 Flag("out", &FLAGS_out, "Output proto text (.pbtxt) file name")};
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
l_mac.h 38 A pointer to overflow flag is passed into the function. Updated
108 __inline Word32 L_mac(Word32 L_var3, Word16 var1, Word16 var2, Flag *pOverflow)
122 static inline Word32 L_mac(Word32 L_var3, Word16 var1, Word16 var2, Flag *pOverflow)
146 __inline Word32 L_mac(Word32 L_var3, Word16 var1, Word16 var2, Flag *pOverflow)
l_msu.h 38 A pointer to overflow flag is passed into the function. Updated
109 __inline Word32 L_msu(Word32 L_var3, Word16 var1, Word16 var2, Flag *pOverflow)
127 __inline Word32 L_msu(Word32 L_var3, Word16 var1, Word16 var2, Flag *pOverflow)
152 static inline Word32 L_msu(Word32 L_var3, Word16 var1, Word16 var2, Flag *pOverflow)
l_mult.h 39 A pointer to overflow flag is passed into the function. Updated
109 __inline Word32 L_mult(Word16 var1, Word16 var2, Flag *pOverflow)
127 __inline Word32 L_mult(Word16 var1, Word16 var2, Flag *pOverflow)
151 static inline Word32 L_mult(Word16 var1, Word16 var2, Flag *pOverflow)
mult.h 39 a pointer to overflow flag is now passed into the function.
109 __inline Word16 mult(Word16 var1, Word16 var2, Flag *pOverflow)
128 __inline Word16 mult(Word16 var1, Word16 var2, Flag *pOverflow)
159 static inline Word16 mult(Word16 var1, Word16 var2, Flag *pOverflow)
basic_op.h 155 pOverflow = pointer to overflow (Flag)
169 Flag *pOverflow)
199 pOverflow = pointer to overflow (Flag)
212 Flag *pOverflow)
267 pOverflow : pointer to overflow (Flag)
275 static inline Word16 shl(Word16 var1, Word16 var2, Flag *pOverflow)
319 pOverflow : pointer to overflow (Flag)
327 static inline Word32 L_shl(Word32 L_var1, Word16 var2, Flag *pOverflow)
372 pOverflow : pointer to overflow (Flag)
380 static inline Word32 L_shr(Word32 L_var1, Word16 var2, Flag *pOverflow
    [all...]
mpy_32_16.h 96 Flag *pOverflow)
118 Flag *pOverflow)
162 Flag *pOverflow)
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
dtx_dec.h 167 Flag *pOverflow
173 Flag *pOverflow);
182 Flag *pOverflow);
c_g_aver.h 147 Word16 bfi, /* i : bad frame indication flag */
148 Word16 prev_bf, /* i : previous bad frame indication flag */
149 Word16 pdfi, /* i : potential degraded bad frame ind flag */
150 Word16 prev_pdf, /* i : prev pot. degraded bad frame ind flag */
153 Flag *pOverflow
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
cod_amr.h 41 Description: Added overflow flag as an element to the cod_amrState data
161 Flag dtx;
170 /* Overflow flag */
171 Flag overflow;
194 Word16 cod_amr_init(cod_amrState **st, Flag dtx);
  /prebuilts/go/darwin-x86/src/cmd/vet/
doc.go 28 By default the -all flag is set so all checks are performed.
30 any flag is explicitly set to false, only those tests are disabled. Thus -printf=true
34 If the -source flag is provided, vet uses only source code.
40 Flag: -asmdecl
46 Flag: -assign
52 Flag: -atomic
58 Flag: -bool
64 Flag: -buildtags
70 Flag: -cgocall
76 Flag: -composite
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/
doc.go 28 By default the -all flag is set so all checks are performed.
30 any flag is explicitly set to false, only those tests are disabled. Thus -printf=true
34 If the -source flag is provided, vet uses only source code.
40 Flag: -asmdecl
46 Flag: -assign
52 Flag: -atomic
58 Flag: -bool
64 Flag: -buildtags
70 Flag: -cgocall
76 Flag: -composite
    [all...]
  /external/toolchain-utils/bestflags/
testing_batch.py 20 from flags import Flag
49 specs: A list of spec from which the flag set is created.
66 # If the value falls in the range, this flag is enabled.
67 flag_set.append(Flag(spec, value))
71 flag_set.append(Flag(spec))
79 All the boolean flags in the specs will be enabled and all the numeric flag
83 specs: A list of spec from which the flag set is created.
98 flag_set.append(Flag(spec, value))
111 specs: A list of spec from which the flag set is created.
124 new_flag = FlagSet([Flag(spec) for spec in specs if random.randint(0, 1)]
    [all...]
  /external/tensorflow/tensorflow/examples/label_image/
main.cc 61 using tensorflow::Flag;
293 std::vector<Flag> flag_list = {
294 Flag("image", &image, "image to be processed"),
295 Flag("graph", &graph, "graph to be executed"),
296 Flag("labels", &labels, "name of file containing labels"),
297 Flag("input_width", &input_width, "resize image to this width in pixels"),
298 Flag("input_height", &input_height,
300 Flag("input_mean", &input_mean, "scale pixel values to this mean"),
301 Flag("input_std", &input_std, "scale pixel values to this std deviation"),
302 Flag("input_layer", &input_layer, "name of input layer")
    [all...]
  /external/tensorflow/tensorflow/tools/benchmark/
benchmark_model.cc 372 std::vector<Flag> flag_list = {
373 Flag("graph", &graph, "graph file name"),
374 Flag("input_layer", &input_layer_string, "input layer names"),
375 Flag("input_layer_shape", &input_layer_shape_string, "input layer shape"),
376 Flag("input_layer_type", &input_layer_type_string, "input layer type"),
377 Flag("input_layer_values", &input_layer_values_string,
379 Flag("output_layer", &output_layer_string, "output layer name"),
380 Flag("max_num_runs", &max_num_runs, "number of runs max"),
381 Flag("max_time", &max_time, "length to run max"),
382 Flag("inference_delay", &inference_delay
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
Tcp4Output.c 110 @param Syn The flag to indicate whether the outgoing segment is a SYN
306 Syn = TCP_FLG_ON (Seg->Flag, TCP_FLG_SYN);
340 // Check whether to set the PSH flag.
342 TCP_CLEAR_FLG (Seg->Flag, TCP_FLG_PSH);
348 TCP_SET_FLG (Seg->Flag, TCP_FLG_PSH);
354 TCP_SET_FLG (Seg->Flag, TCP_FLG_PSH);
359 // Check whether to set the URG flag and the urgent pointer.
361 TCP_CLEAR_FLG (Seg->Flag, TCP_FLG_URG);
366 TCP_SET_FLG (Seg->Flag, TCP_FLG_URG);
381 Head->Flag = Seg->Flag;
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
TcpOutput.c 107 @param[in] Syn The flag to indicate whether the outgoing segment
300 Syn = TCP_FLG_ON (Seg->Flag, TCP_FLG_SYN);
334 // Check whether to set the PSH flag.
336 TCP_CLEAR_FLG (Seg->Flag, TCP_FLG_PSH);
343 TCP_SET_FLG (Seg->Flag, TCP_FLG_PSH);
348 TCP_SET_FLG (Seg->Flag, TCP_FLG_PSH);
353 // Check whether to set the URG flag and the urgent pointer.
355 TCP_CLEAR_FLG (Seg->Flag, TCP_FLG_URG);
359 TCP_SET_FLG (Seg->Flag, TCP_FLG_URG);
374 Head->Flag = Seg->Flag;
    [all...]
  /external/tensorflow/tensorflow/contrib/tpu/profiler/
capture_tpu_profile.cc 100 std::vector<tensorflow::Flag> flag_list = {
101 tensorflow::Flag("service_addr", &FLAGS_service_addr,
103 tensorflow::Flag("logdir", &FLAGS_logdir,
106 tensorflow::Flag("duration_ms", &FLAGS_duration_ms,
108 tensorflow::Flag("num_tracing_attempts", &FLAGS_num_tracing_attempts,
111 tensorflow::Flag("include_dataset_ops", &FLAGS_include_dataset_ops,
  /external/tensorflow/tensorflow/compiler/xla/tools/
hlo_proto_to_json.cc 76 const std::vector<tensorflow::Flag> flag_list = {
77 tensorflow::Flag("input_file", &input_file, "file to convert."),
78 tensorflow::Flag("output_file", &output_file, "converted file"),
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
lsp_az.cpp 46 Description: Added setting of Overflow flag in the inlined code.
60 Description: Modified to pass overflow flag through to L_add and L_sub. The
61 flag is passed back to the calling function by pointer reference.
140 [data type Pointer to Flag]
146 [data type Pointer to Flag]
255 Flag *pOverflow)
312 [data type Pointer to Flag]
318 [data type Pointer to Flag]
378 Flag *pOverflow)
410 [data type Pointer to Flag]
    [all...]
pow2.cpp 37 pointer to overflow flag into the function instead of using a
38 global flag. Removed inclusion of "pow2.tab"
85 pOverflow = pointer to overflow flag
179 Flag *pOverflow
shr.cpp 49 overflow flag instead of using global data.
108 pOverflow = pointer to overflow (Flag)
205 Word16 shr(Word16 var1, Word16 var2, Flag *pOverflow)
  /external/clang/tools/diagtool/
ShowEnabledWarnings.cpp 29 StringRef Flag;
32 PrettyDiag(StringRef name, StringRef flag, DiagnosticsEngine::Level level)
33 : Name(name), Flag(flag), Level(level) {}
89 // First check our one flag (--levels).
144 if (!I->Flag.empty())
145 Out << " [-W" << I->Flag << "]";
  /external/llvm/include/llvm/Support/
ScopedPrinter.h 121 for (const auto &Flag : Flags) {
122 if (Flag.Value == 0)
126 if (Flag.Value & EnumMask1)
128 else if (Flag.Value & EnumMask2)
130 else if (Flag.Value & EnumMask3)
132 bool IsEnum = (Flag.Value & EnumMask) != 0;
133 if ((!IsEnum && (Value & Flag.Value) == Flag.Value) ||
134 (IsEnum && (Value & EnumMask) == Flag.Value)) {
135 SetFlags.push_back(Flag);
    [all...]
  /external/tensorflow/tensorflow/examples/multibox_detector/
main.cc 41 using tensorflow::Flag;
348 std::vector<Flag> flag_list = {
349 Flag("image", &image, "image to be processed"),
350 Flag("image_out", &image_out,
352 Flag("graph", &graph, "graph to be executed"),
353 Flag("box_priors", &box_priors, "name of file containing box priors"),
354 Flag("input_width", &input_width, "resize image to this width in pixels"),
355 Flag("input_height", &input_height,
357 Flag("input_mean", &input_mean, "scale pixel values to this mean"),
358 Flag("input_std", &input_std, "scale pixel values to this std deviation")
    [all...]

Completed in 528 milliseconds

1 2 3 4 5 6 7 8 91011>>