Home
last modified time | relevance | path

Searched refs:string_index (Results 1 – 18 of 18) sorted by relevance

/external/tensorflow/tensorflow/core/platform/
Dmacros.h30 #define TF_PRINTF_ATTRIBUTE(string_index, first_to_check) \ argument
31 __attribute__((__format__(__printf__, string_index, first_to_check)))
32 #define TF_SCANF_ATTRIBUTE(string_index, first_to_check) \ argument
33 __attribute__((__format__(__scanf__, string_index, first_to_check)))
43 #define TF_PRINTF_ATTRIBUTE(string_index, first_to_check) argument
44 #define TF_SCANF_ATTRIBUTE(string_index, first_to_check) argument
55 #define TF_PRINTF_ATTRIBUTE(string_index, first_to_check) argument
56 #define TF_SCANF_ATTRIBUTE(string_index, first_to_check) argument
/external/boringssl/src/include/openssl/
Dbase.h188 #define OPENSSL_PRINTF_FORMAT_FUNC(string_index, first_to_check) \ argument
190 (__format__(__MINGW_PRINTF_FORMAT, string_index, first_to_check)))
192 #define OPENSSL_PRINTF_FORMAT_FUNC(string_index, first_to_check) \
193 __attribute__((__format__(__printf__, string_index, first_to_check)))
196 #define OPENSSL_PRINTF_FORMAT_FUNC(string_index, first_to_check)
/external/emma/core/java12/com/vladium/jcd/cls/constant/
DCONSTANT_String_info.java38 public CONSTANT_String_info (final int string_index) in CONSTANT_String_info() argument
40 m_string_index = string_index; in CONSTANT_String_info()
/external/v8/src/
Dbignum.cc118 int string_index = length - 1; in AssignHexString() local
123 current_bigit += HexCharValue(value[string_index--]) << (j * 4); in AssignHexString()
130 for (int j = 0; j <= string_index; ++j) { in AssignHexString()
558 int string_index = needed_chars - 1; in ToHexString() local
559 buffer[string_index--] = '\0'; in ToHexString()
562 buffer[string_index--] = '0'; in ToHexString()
568 buffer[string_index--] = HexCharOfValue(current_bigit & 0xF); in ToHexString()
575 buffer[string_index--] = HexCharOfValue(most_significant_bigit & 0xF); in ToHexString()
/external/freetype/include/freetype/internal/services/
Dsvpscmap.h47 (*PS_Adobe_Std_StringsFunc)( FT_UInt string_index );
79 FT_UInt string_index );
/external/tensorflow/tensorflow/contrib/lite/
Dstring_util.cc108 StringRef GetString(const TfLiteTensor* tensor, int string_index) { in GetString() argument
110 GetIntPtr(tensor->data.raw + sizeof(int32_t) * (string_index + 1)); in GetString()
Dstring_util.h88 StringRef GetString(const TfLiteTensor* tensor, int string_index);
/external/libusb/examples/
Dxusb.c810 uint8_t string_index[3]; // indexes of the string descriptors in test_device() local
849 string_index[0] = dev_desc.iManufacturer; in test_device()
850 string_index[1] = dev_desc.iProduct; in test_device()
851 string_index[2] = dev_desc.iSerialNumber; in test_device()
925 if (string_index[i] == 0) { in test_device()
928 …if (libusb_get_string_descriptor_ascii(handle, string_index[i], (unsigned char*)string, 128) >= 0)… in test_device()
929 printf(" String (0x%02X): \"%s\"\n", string_index[i], string); in test_device()
/external/v8/src/runtime/
Druntime-regexp.cc1451 uint32_t string_index = 0; in RUNTIME_FUNCTION() local
1453 while (string_index < length) { in RUNTIME_FUNCTION()
1455 isolate, RegExpUtils::SetLastIndex(isolate, splitter, string_index)); in RUNTIME_FUNCTION()
1463 string_index = RegExpUtils::AdvanceStringIndex(isolate, string, in RUNTIME_FUNCTION()
1464 string_index, unicode); in RUNTIME_FUNCTION()
1478 string_index = RegExpUtils::AdvanceStringIndex(isolate, string, in RUNTIME_FUNCTION()
1479 string_index, unicode); in RUNTIME_FUNCTION()
1485 factory->NewSubString(string, prev_string_index, string_index); in RUNTIME_FUNCTION()
1513 string_index = prev_string_index; in RUNTIME_FUNCTION()
/external/deqp/external/openglcts/modules/gles31/
Des31cArrayOfArraysTests.cpp1900 for (size_t string_index = 0; string_index < sizeof(input) / sizeof(input[0]); string_index++) in test_shader_compilation() local
1905 shader_source += input[string_index]; in test_shader_compilation()
2114 for (size_t string_index = 0; string_index < sizeof(input) / sizeof(input[0]); string_index++) in test_shader_compilation() local
2116 …std::string shader_source = shader_start + " " + input[string_index] + shader_variable_declarat… in test_shader_compilation()
2610 for (size_t string_index = 0; string_index < sizeof(input) / sizeof(input[0]); string_index++) in test_shader_compilation() local
2615 shader_source += input[string_index]; in test_shader_compilation()
3192 …for (size_t string_index = 0; string_index < sizeof(variable_initializations) / sizeof(variable_in… in test_shader_compilation() local
3193 string_index++) in test_shader_compilation()
3196 shader_source += " " + variable_initializations[string_index]; in test_shader_compilation()
3308 for (size_t string_index = 0; string_index < sizeof(input) / sizeof(input[0]); string_index++) in test_shader_compilation() local
[all …]
/external/libusb/libusb/os/
Dhaiku_usb_raw.h138 uint32 string_index; member
Dwindows_winusb.c3016 d.iManufacturer = dev->string_index[0]; in _hid_get_device_descriptor()
3017 d.iProduct = dev->string_index[1]; in _hid_get_device_descriptor()
3018 d.iSerialNumber = dev->string_index[2]; in _hid_get_device_descriptor()
3121 if (_index == (dev->string_index[i])) { in _hid_get_string_descriptor()
3599 priv->hid->string_index[0] = priv->dev_descriptor.iManufacturer; in hid_open()
3600 if (priv->hid->string_index[0] != 0) in hid_open()
3605 priv->hid->string_index[1] = priv->dev_descriptor.iProduct; in hid_open()
3606 if (priv->hid->string_index[1] != 0) in hid_open()
3611 priv->hid->string_index[2] = priv->dev_descriptor.iSerialNumber; in hid_open()
3612 if (priv->hid->string_index[2] != 0) in hid_open()
Dwindows_winusb.h197 uint8_t string_index[3]; // man, prod, ser member
/external/googletest/googletest/include/gtest/internal/
Dgtest-port.h894 # define GTEST_ATTRIBUTE_PRINTF_(string_index, first_to_check) \ argument
895 __attribute__((__format__(__MINGW_PRINTF_FORMAT, string_index, \
898 # define GTEST_ATTRIBUTE_PRINTF_(string_index, first_to_check) \ argument
899 __attribute__((__format__(__printf__, string_index, first_to_check)))
902 # define GTEST_ATTRIBUTE_PRINTF_(string_index, first_to_check) argument
/external/freetype/src/cff/
Dcffload.c2175 CFF_IndexRec string_index; in cff_font_load() local
2180 FT_ZERO( &string_index ); in cff_font_load()
2290 FT_SET_ERROR( cff_index_init( &string_index, in cff_font_load()
2294 FT_SET_ERROR( cff_index_get_pointers( &string_index, in cff_font_load()
2310 font->num_strings = string_index.count; in cff_font_load()
2492 cff_index_done( &string_index ); in cff_font_load()
/external/clang/test/CodeGenCXX/
Dcatch-undef-behavior.cpp340 char string_index(int n) { in string_index() function
/external/python/cpython2/Objects/
Dstringobject.c1768 string_index(PyStringObject *self, PyObject *args) in string_index() function
3658 {"index", (PyCFunction)string_index, METH_VARARGS, index__doc__},
/external/freetype/
DChangeLog.246277 Remove `string_index' and `num_global_subrs' fields.