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

1 2 3 4 5 6 7 8

  /external/libxkbcommon/xkbcommon/test/
utf8.c 31 #define VALID(lit) assert(is_valid_utf8(lit, sizeof(lit)-1))
42 VALID("ascii");
43 VALID("\xCE\xBA\xE1\xBD\xB9\xCF\x83\xCE\xBC\xCE\xB5");
45 VALID("");
46 VALID("\x00");
47 VALID("\x00\x00");
49 VALID("\x50");
50 VALID("\xC2\x80");
51 VALID("\xE0\xA0\x80");
52 VALID("\xF0\x90\x80\x80")
    [all...]
  /system/netd/netutils_wrappers/
NetUtilsWrapperTest-1.0.cpp 27 #define VALID true
31 bool valid; member in struct:Command
37 {VALID, "/system/bin/tc qdisc del dev root"},
38 {VALID, "/system/bin/ip -6 addr add dev r_rmnet_data6 2001:db8::/64"},
40 {VALID, "/system/bin/ip6tables -w -A INPUT -j qcom_foo"},
42 {VALID, "/system/bin/ip6tables -w -A INPUT -i rmnet_data9 -j routectrl_MANGLE_INPUT"},
43 {VALID, "/system/bin/ip6tables -w -F nm_pre_ip4"},
45 {VALID, "/system/bin/ndc network interface add oem10"},
46 {VALID, "/system/bin/ndc network interface add oem10 v_oem9"},
47 {VALID, "/system/bin/ndc network interface add oem10 oem9"}
    [all...]
  /external/tensorflow/tensorflow/core/util/
padding.h 34 // VALID: No padding is carried out.
39 VALID = 1, // No padding.
43 // Return the string containing the list of valid padding types, that can be
padding.cc 30 } else if (str_value == "VALID") {
31 *value = VALID;
38 string GetPaddingAttrString() { return "padding: {'SAME', 'VALID'}"; }
  /external/conscrypt/platform/src/main/java/org/conscrypt/ct/
VerifiedSCT.java 29 VALID,
CTVerificationResult.java 33 if (result.status == VerifiedSCT.Status.VALID) {
  /device/google/marlin/dataservices/datatop/src/
datatop_opt.h 49 #define VALID 0
datatop_fileops.c 99 * @return VALID - File does not exist and can be written to.
113 return VALID;
121 * @return VALID - File opened successfully.
128 return VALID;
datatop_opt.c 69 * @return PARSE_FAILURE - CLI arguments and/or input not valid.
95 printf("Argument for -n is not valid. ");
104 printf("Argument for -i is not valid. ");
114 printf("Argument for -t is not valid. ");
121 if (dtop_check_writefile_access(optarg) == VALID) {
130 if (dtop_check_writefile_access(optarg) == VALID)
  /external/libunwind/src/ppc/
Ginit_remote.c 57 #error init_remote :: NO VALID PPC ARCH!
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
SdkToolsLocator.java 90 return SdkInstallStatus.VALID;
97 private SdkInstallStatus(boolean valid, String errorMessage) {
98 mValid = valid;
110 public static final SdkInstallStatus VALID = new SdkInstallStatus(true, "");
  /external/tensorflow/tensorflow/core/kernels/
nn_ops_test.cc 183 .Attr("padding", padding == VALID ? "VALID" : "SAME")
192 .Attr("padding", padding == VALID ? "VALID" : "SAME")
201 .Attr("padding", padding == VALID ? "VALID" : "SAME")
212 .Attr("padding", padding == VALID ? "VALID" : "SAME")
290 BM_ConvFloatFwd(32, 17, 17, 192, 192, 3, 3, 2, VALID, conv12);
293 BM_ConvFloatFwd(32, 17, 17, 128, 320, 3, 3, 2, VALID, conv15)
    [all...]
ops_util.cc 29 case Padding::VALID:
ops_util_test.cc 144 padding_struct pad_struct = {{1, 1, 3, 3, 1, 1, VALID}, {-1, -1, 0, 0, 0, 0}};
150 padding_struct pad_struct2 = {{3, 3, 2, 2, 2, 2, VALID}, {1, 1, 0, 0, 0, 0}};
157 padding_struct pad_struct2 = {{4, 5, 1, 2, 1, 1, VALID}, {4, 4, 0, 0, 0, 0}};
163 padding_struct pad_struct1 = {{4, 4, 2, 2, 1, 2, VALID}, {3, 2, 0, 0, 0, 0}};
164 padding_struct pad_struct2 = {{4, 4, 2, 2, 2, 1, VALID}, {2, 3, 0, 0, 0, 0}};
171 padding_struct pad_struct2 = {{3, 3, 2, 2, 2, 2, VALID}, {1, 1, 0, 0, 0, 0}};
  /external/tensorflow/tensorflow/python/kernel_tests/
neon_depthwise_conv_op_test.py 46 VALID = "VALID"
49 paddings = [SAME, SAME, SAME, SAME, VALID, SAME, SAME, SAME]
73 VALID = "VALID"
76 paddings = [SAME, VALID, SAME, SAME, VALID]
273 padding="VALID",
281 padding="VALID",
  /device/google/marlin/camera/QCamera2/HAL3/
QCamera3HALHeader.h 56 VALID,
  /external/libmojo/mojo/public/cpp/bindings/
struct_ptr.h 145 : value_(std::forward<Args>(args)...), state_(VALID) {}
161 DCHECK(state_ == VALID);
165 DCHECK(state_ == VALID);
203 VALID,
  /external/tensorflow/tensorflow/contrib/fused_conv/python/ops/
fused_conv2d_bias_activation_op.py 61 padding: A `string` from: `"SAME", "VALID"`.
fused_conv2d_bias_activation_benchmark.py 42 padding: A string from: "SAME", "VALID". The type of padding
87 padding: A string from: "SAME", "VALID". The type of padding
144 padding: A string from: "SAME", "VALID". The type of padding
192 paddings = ["VALID", "SAME"]
  /hardware/qcom/camera/msm8998/QCamera2/HAL3/
QCamera3HALHeader.h 56 VALID,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/binaryxml/
BinaryXMLDescriber.java 64 status = VALID;
  /external/tensorflow/tensorflow/python/ops/
conv2d_benchmark.py 44 padding: A string from: "SAME", "VALID". The type of padding
94 padding: A string from: "SAME", "VALID". The type of padding
154 paddings = ["VALID", "SAME"]
nn_ops.py 74 padding: Padding method to use, must be either "VALID" or "SAME".
78 starts with "NC"). For N=1, the valid values are "NWC" (default) and
79 "NCW". For N=2, the valid values are "NHWC" (default) and "NCHW".
80 For N=3, the valid values are "NDHWC" (default) and "NCDHW".
89 if padding == "VALID":
232 "VALID")
247 If `padding = "VALID"`, then:
283 Note in the case that `dilation_rate` is not uniformly 1, specifying "VALID"
289 `dilation_rate` parameters and "VALID" padding
291 net = with_space_to_batch(net, dilation_rate, "VALID", op_1
    [all...]
  /external/tensorflow/tensorflow/compiler/tests/
depthwise_conv_op_test.py 81 VALID = "VALID"
84 paddings = [SAME, SAME, SAME, SAME, SAME, SAME, VALID, SAME, SAME, SAME]
108 VALID = "VALID"
111 paddings = [SAME, VALID, SAME, SAME, VALID]
315 padding="VALID",
  /external/iproute2/examples/
cbq.init-v0.7.3 179 # configuration to check whether it is completely valid.
181 # All CBQ parameters are valid for Ethernet interfaces only, The script was
199 # Example of valid config name:
709 VALID=1
712 [ "$2" = "invalidate" -o ! -f $CBQ_CACHE ] && VALID=0
713 if [ $VALID -eq 1 ]; then
715 wc -l`" -gt 0 ] && VALID=0
719 if [ $VALID -ne 1 ]; then
    [all...]

Completed in 1300 milliseconds

1 2 3 4 5 6 7 8