HomeSort by relevance Sort by last modified time
    Searched refs:value_length (Results 1 - 17 of 17) sorted by null

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_flags.cc 154 const char **value, int *value_length) {
192 *value_length = end - pos;
199 int value_length = internal_strlen(value); local
200 return (flag_length >= value_length) &&
201 (0 == internal_strncmp(flag, value, value_length));
236 int value_length; local
238 if (!GetFlagValue(env, name, &value, &value_length))
240 if (StartsWith(value, value_length, "0") ||
241 StartsWith(value, value_length, "no") ||
242 StartsWith(value, value_length, "false")
253 int value_length; local
263 int value_length; local
273 int value_length; local
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/table/
block.cc 49 // "*value_length", respectively. Will not derefence past "limit".
56 uint32_t* value_length) {
60 *value_length = reinterpret_cast<const unsigned char*>(p)[2];
61 if ((*shared | *non_shared | *value_length) < 128) {
67 if ((p = GetVarint32Ptr(p, limit, value_length)) == NULL) return NULL;
70 if (static_cast<uint32_t>(limit - p) < (*non_shared + *value_length)) {
173 uint32_t shared, non_shared, value_length; local
176 &shared, &non_shared, &value_length);
238 uint32_t shared, non_shared, value_length; local
239 p = DecodeEntry(p, limit, &shared, &non_shared, &value_length);
    [all...]
  /external/chromium_org/base/
environment.cc 65 DWORD value_length = ::GetEnvironmentVariable(
67 if (value_length == 0)
70 scoped_ptr<wchar_t[]> value(new wchar_t[value_length]);
72 value_length);
  /hardware/ti/omap4-aah/camera/
Encoder_libjpeg.cpp 370 unsigned int value_length = 0; local
383 value_length = sizeof(ExifAsciiPrefix) + strlen(value + sizeof(ExifAsciiPrefix));
385 value_length = strlen(value);
404 MIN(ARRAY_SIZE(ImageInfo.DateTime), value_length + 1));
410 table[position].Value = (char*) malloc(sizeof(char) * (value_length + 1));
413 memcpy(table[position].Value, value, value_length + 1);
414 table[position].DataLength = value_length + 1;
  /hardware/ti/omap4xxx/camera/
Encoder_libjpeg.cpp 309 unsigned int value_length = 0; local
322 value_length = sizeof(ExifAsciiPrefix) + strlen(value + sizeof(ExifAsciiPrefix));
324 value_length = strlen(value);
342 table[position].Value = (char*) malloc(sizeof(char) * (value_length + 1));
345 memcpy(table[position].Value, value, value_length + 1);
346 table[position].DataLength = value_length + 1;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
xmllite.h 118 UINT *value_length) = 0;
230 UINT *value_length);
294 #define IXmlReader_GetValue(This,value,value_length) (This)->lpVtbl->GetValue(This,value,value_length)
355 static FORCEINLINE HRESULT IXmlReader_GetValue(IXmlReader* This,LPCWSTR *value,UINT *value_length) {
356 return This->lpVtbl->GetValue(This,value,value_length);
501 UINT *value_length);
    [all...]
  /external/chromium_org/chrome/installer/gcapi/
gcapi.cc 178 DWORD value_length = sizeof(DWORD); local
181 &value_length) == ERROR_SUCCESS &&
  /external/chromium_org/net/tools/balsa/
balsa_frame.cc 680 size_t value_length = line_end - value_begin; local
682 if ((value_length == 7) &&
685 } else if ((value_length == 8) &&
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/
crypto.h 176 size_t *value_length; /* Returned length of value for output */ member in struct:openssl_item_st
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
crypto.h 176 size_t *value_length; /* Returned length of value for output */ member in struct:openssl_item_st
  /external/expat/lib/
expat.h 318 the value_length argument. Since it is legal to have zero-length
334 int value_length,
    [all...]
  /external/openssl/crypto/
crypto.h 176 size_t *value_length; /* Returned length of value for output */ member in struct:openssl_item_st
  /external/openssl/include/openssl/
crypto.h 176 size_t *value_length; /* Returned length of value for output */ member in struct:openssl_item_st
  /external/chromium_org/third_party/libjingle/source/talk/base/
httpclient.cc 268 size_t value_length = end_of_value - start_of_value; local
271 std::string value(formatted_header.substr(start_of_value, value_length));
  /external/chromium_org/third_party/webrtc/base/
httpclient.cc 251 size_t value_length = end_of_value - start_of_value; local
254 std::string value(formatted_header.substr(start_of_value, value_length));
  /external/expat/tests/
runtests.c 108 int value_length,
    [all...]
  /external/chromium_org/third_party/libusb/src/libusb/os/
windows_usb.c 423 DWORD value_length=sizeof(DWORD); local
427 (LPBYTE) &libusb0_symboliclink_index, &value_length);
    [all...]

Completed in 509 milliseconds