Home
last modified time | relevance | path

Searched refs:value_s (Results 1 – 3 of 3) sorted by relevance

/external/deqp-deps/glslang/StandAlone/
DResourceLimits.cpp272 const size_t value_s = configStr.find_first_not_of(delims, token_e); in DecodeResourceLimits() local
273 const size_t value_e = configStr.find_first_of(delims, value_s); in DecodeResourceLimits()
278 const std::string valueStr = configStr.substr(value_s, value_e-value_s); in DecodeResourceLimits()
280 if (value_s == std::string::npos || ! (valueStr[0] == '-' || isdigit(valueStr[0]))) { in DecodeResourceLimits()
/external/tensorflow/tensorflow/core/ops/
Dlookup_ops.cc402 ShapeHandle value_s; in __anon8a0811960c02() local
403 TF_RETURN_IF_ERROR(c->MakeShapeFromPartialTensorShape(value_p, &value_s)); in __anon8a0811960c02()
404 return MutableHashTableShape(c, /*key=*/c->Scalar(), /*value=*/value_s); in __anon8a0811960c02()
437 ShapeHandle value_s; in __anon8a0811960d02() local
438 TF_RETURN_IF_ERROR(c->MakeShapeFromPartialTensorShape(value_p, &value_s)); in __anon8a0811960d02()
439 return MutableHashTableShape(c, /*key=*/c->input(0), /*value=*/value_s); in __anon8a0811960d02()
/external/tensorflow/tensorflow/tools/graph_transforms/
Dtransform_utils_test.cc178 string value_s = "some_value"; in TestSetNodeAttr() local
179 SetNodeAttr("bar", value_s, &node); in TestSetNodeAttr()