HomeSort by relevance Sort by last modified time
    Searched refs:cstr (Results 51 - 75 of 117) sorted by null

1 23 4 5

  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/DWARF/
DWARFFormValue.h 77 const char *cstr; member in union:llvm::DWARFFormValue::ValueType::__anon60429
96 void setPValue(const char *V) { Value.cstr = V; }
119 return Value.data != nullptr && Value.data == (const uint8_t *)Value.cstr;
  /tools/dexter/slicer/
dex_ir.cc 33 static uint32_t HashString(const char* cstr) {
35 while (*cstr) {
36 hash = ((hash << 5) + hash) ^ *cstr++;
  /external/libmicrohttpd/doc/examples/
sessions.c 269 char cstr[256]; local
270 snprintf (cstr,
271 sizeof (cstr),
278 cstr))
  /external/libmicrohttpd/src/examples/
post_example.c 247 char cstr[256]; local
248 snprintf (cstr,
249 sizeof (cstr),
256 cstr))
  /external/webrtc/webrtc/libjingle/xmllite/
xmlelement.h 71 explicit XmlText(const char* cstr, size_t len) :
73 text_(cstr, len) {
xmlelement.cc 376 void XmlElement::AddParsedText(const char* cstr, int len) {
381 last_child_->AsText()->AddParsedText(cstr, len);
385 last_child_ = *pprev = new XmlText(cstr, len);
  /external/icu/icu4c/source/test/intltest/
numberformattesttuple.cpp 78 CharString cstr; local
79 cstr.appendInvariantChars(str, status);
84 if (uprv_strcmp(cstr.data(), table[i].str) == 0) {
plurults.cpp 68 const char *cstr() {return buf;}; function in class:US
429 // std::cout << " uk " << US(resultKeyword).cstr() << " " << values[j] << std::endl;
433 __FILE__, __LINE__, locales[i].getName(), US(*keyword).cstr(), values[j], values[j], US(resultKeyword).cstr());
652 __FILE__, line, num, keyword, US(actualKeyword).cstr());
    [all...]
  /external/llvm/bindings/go/llvm/
ir.go 744 cstr := C.CString(str)
745 defer C.free(unsafe.Pointer(cstr))
746 md.C = C.LLVMMDString2(c.C, cstr, C.unsigned(len(str)))
772 cstr := C.CString(str)
773 defer C.free(unsafe.Pointer(cstr))
774 v.C = C.LLVMConstIntOfString(t.C, cstr, C.uint8_t(radix))
782 cstr := C.CString(str)
783 defer C.free(unsafe.Pointer(cstr))
784 v.C = C.LLVMConstRealOfString(t.C, cstr)
793 cstr := C.CString(str
    [all...]
target.go 266 cstr := C.LLVMGetTargetMachineTriple(tm.C)
267 return C.GoString(cstr)
  /external/llvm/lib/DebugInfo/DWARF/
DWARFFormValue.cpp 208 Value.cstr = data.getCStr(offset_ptr);
395 OS.write_escaped(Value.cstr);
509 return Value.cstr;
  /external/mdnsresponder/mDNSCore/
DNSCommon.c 481 mDNSexport mDNSu8 *AppendLiteralLabelString(domainname *const name, const char *cstr)
489 while (*cstr && ptr < lim) *ptr++ = (mDNSu8)*cstr++; // Copy the data
492 if (*cstr) return(mDNSNULL); // Failure: We didn't successfully consume all input
505 const char *cstr = cstring; local
508 while (*cstr && ptr < lim) // While more characters, and space to put them...
511 if (*cstr == '.') { LogMsg("AppendDNSNameString: Illegal empty label in name \"%s\"", cstring); return(mDNSNULL); }
512 while (*cstr && *cstr != '.' && ptr < lim) // While we have characters in the label...
514 mDNSu8 c = (mDNSu8)*cstr++; // Read the characte
    [all...]
  /external/tensorflow/tensorflow/go/
graph.go 240 cstr := C.CString(value)
241 C.TF_SetAttrString(cdesc, cAttrName, unsafe.Pointer(cstr), C.size_t(len(value)))
242 C.free(unsafe.Pointer(cstr))
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixNativeDispatcher.java 40 byte[] cstr = path.getByteArrayForSysCalls();
41 int size = cstr.length + 1;
50 NativeBuffers.copyCStringToNativeBuffer(cstr, buffer);
  /external/v8/samples/
shell.cc 151 const char* cstr = ToCString(str); local
152 printf("%s", cstr);
365 const char* cstr = ToCString(str); local
366 printf("%s\n", cstr);
  /hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/
VehicleObjectPool.h 187 RecyclableType obtainString(const char* cstr);
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
valuetest.cpp 589 static const char cstr[] = "World"; // const array local
590 Value(cstr).Swap(x);
592 EXPECT_EQ(x.GetString(), cstr);
593 EXPECT_EQ(x.GetStringLength(), sizeof(cstr)-1);
604 const char* pstr = cstr;
608 EXPECT_EQ(x.GetString(), cstr);
609 EXPECT_EQ(x.GetStringLength(), sizeof(cstr)-1);
654 z.SetString(cstr);
656 EXPECT_EQ(cstr, z.GetString());
658 z = cstr;
    [all...]
  /libcore/ojluni/src/main/native/
java_props_md.c 577 GetStringPlatform(JNIEnv *env, nchar* cstr)
579 return JNU_NewStringPlatform(env, cstr);
  /external/python/cpython3/Modules/
_json.c 921 PyObject *cstr; local
924 cstr = PyUnicode_InternFromString(constant);
925 if (cstr == NULL)
929 rval = PyObject_CallFunctionObjArgs(s->parse_constant, cstr, NULL);
930 idx += PyUnicode_GET_LENGTH(cstr);
931 Py_DECREF(cstr);
1501 PyObject *cstr = _encoded_const(obj); local
    [all...]
  /external/boringssl/src/crypto/x509v3/
v3_utl.c 993 ASN1_STRING *cstr; local
999 cstr = gen->d.rfc822Name;
1001 cstr = gen->d.dNSName;
1003 cstr = gen->d.iPAddress;
1005 if ((rv = do_check_string(cstr, alt_type, equal, flags,
    [all...]
  /external/libchrome/base/trace_event/
memory_usage_estimator.h 261 const uint8_t* cstr = reinterpret_cast<const uint8_t*>(string.c_str()); local
263 if (cstr >= inline_cstr && cstr < inline_cstr + sizeof(string)) {
  /external/icu/icu4c/source/test/cintltst/
cnumtst.c 2083 const char *cstr; local
    [all...]
  /external/Microsoft-GSL/tests/
multi_span_tests.cpp 568 const std::string cstr = "hello"; variable
581 multi_span<char> s{cstr};
583 multi_span<const char> cs{cstr};
584 CHECK((cs.size() == narrow_cast<std::ptrdiff_t>(cstr.size()) &&
585 cs.data() == cstr.data()));
1205 const string cstr; variable
1206 multi_span<const char> cstrspan = as_multi_span(cstr);
    [all...]
  /external/selinux/libsemanage/src/
genhomedircon.c 254 #define rstrip_oexpr_len(cstr, cstrlen) \
256 if (len >= (cstrlen) && !strncmp(oexpr + len - (cstrlen), (cstr), (cstrlen))) \
259 #define rstrip_oexpr(cstr) rstrip_oexpr_len(cstr, sizeof(cstr) - 1)
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/comp/
markv_codec.cpp 308 char* cstr = new char[str.length() + 1]; local
309 assert(cstr);
310 std::strncpy(cstr, str.c_str(), str.length());
311 cstr[str.length()] = '\0';
312 out->str = cstr;
    [all...]

Completed in 749 milliseconds

1 23 4 5