Home
last modified time | relevance | path

Searched refs:string_index (Results 1 - 19 of 19) sorted by relevance

/third_party/mbedtls/include/mbedtls/
H A Ddebug.h86 #define MBEDTLS_PRINTF_ATTRIBUTE(string_index, first_to_check) \
87 __attribute__((__format__(gnu_printf, string_index, first_to_check)))
89 #define MBEDTLS_PRINTF_ATTRIBUTE(string_index, first_to_check) \
90 __attribute__((format(printf, string_index, first_to_check)))
93 #define MBEDTLS_PRINTF_ATTRIBUTE(string_index, first_to_check)
96 #define MBEDTLS_PRINTF_ATTRIBUTE(string_index, first_to_check)
/third_party/skia/third_party/externals/abseil-cpp/absl/base/
H A Dattributes.h87 #define ABSL_PRINTF_ATTRIBUTE(string_index, first_to_check) \
88 __attribute__((__format__(__printf__, string_index, first_to_check)))
89 #define ABSL_SCANF_ATTRIBUTE(string_index, first_to_check) \
90 __attribute__((__format__(__scanf__, string_index, first_to_check)))
92 #define ABSL_PRINTF_ATTRIBUTE(string_index, first_to_check)
93 #define ABSL_SCANF_ATTRIBUTE(string_index, first_to_check)
/third_party/node/deps/v8/src/base/numbers/
H A Dbignum.cc109 int string_index = length - 1; in AssignHexString() local
114 current_bigit += HexCharValue(value[string_index--]) << (j * 4); in AssignHexString()
121 for (int j = 0; j <= string_index; ++j) { in AssignHexString()
537 int string_index = needed_chars - 1; in ToHexString() local
538 buffer[string_index--] = '\0'; in ToHexString()
541 buffer[string_index--] = '0'; in ToHexString()
547 buffer[string_index--] = HexCharOfValue(current_bigit & 0xF); in ToHexString()
554 buffer[string_index--] = HexCharOfValue(most_significant_bigit & 0xF); in ToHexString()
/third_party/skia/third_party/externals/freetype/include/freetype/internal/services/
H A Dsvpscmap.h47 (*PS_Adobe_Std_StringsFunc)( FT_UInt string_index );
78 FT_UInt string_index );
/third_party/libwebsockets/include/
H A Dlibwebsockets.h103 #define LWS_FORMAT(string_index)
205 #define LWS_FORMAT(string_index) __attribute__ ((format(printf, string_index, string_index+1)))
211 #define LWS_FORMAT(string_index)
/third_party/FreeBSD/sys/dev/usb/
H A Dusbdi_util.h67 char *buf, uint16_t len, uint8_t string_index);
70 uint8_t string_index);
H A Dusb_hid.c93 c->string_index = 0; in hid_clear_local()
514 c->string_index = dval; in hid_get_item()
H A Dusb_request.c1053 * This function will return the string given by "string_index"
1064 uint16_t len, uint8_t string_index) in usbd_req_get_string_any()
1078 if (string_index == 0) { in usbd_req_get_string_any()
1088 (udev, mtx, buf, len, udev->langid, string_index); in usbd_req_get_string_any()
1167 uint8_t string_index) in usbd_req_get_string_desc()
1170 UDESC_STRING, string_index, 0)); in usbd_req_get_string_desc()
1063 usbd_req_get_string_any(struct usb_device *udev, struct mtx *mtx, char *buf, uint16_t len, uint8_t string_index) usbd_req_get_string_any() argument
1165 usbd_req_get_string_desc(struct usb_device *udev, struct mtx *mtx, void *sdesc, uint16_t max_len, uint16_t lang_id, uint8_t string_index) usbd_req_get_string_desc() argument
H A Dusbhid.h230 int32_t string_index; member
/third_party/icu/vendor/double-conversion/upstream/double-conversion/
H A Dbignum.cc609 int string_index = needed_chars - 1;
610 buffer[string_index--] = '\0';
613 buffer[string_index--] = '0';
619 buffer[string_index--] = HexCharOfValue(current_bigit & 0xF);
626 buffer[string_index--] = HexCharOfValue(most_significant_bigit & 0xF);
/third_party/icu/icu4c/source/i18n/
H A Ddouble-conversion-bignum.cpp623 int string_index = needed_chars - 1;
624 buffer[string_index--] = '\0';
627 buffer[string_index--] = '0';
633 buffer[string_index--] = HexCharOfValue(current_bigit & 0xF);
640 buffer[string_index--] = HexCharOfValue(most_significant_bigit & 0xF);
/third_party/node/deps/icu-small/source/i18n/
H A Ddouble-conversion-bignum.cpp623 int string_index = needed_chars - 1;
624 buffer[string_index--] = '\0';
627 buffer[string_index--] = '0';
633 buffer[string_index--] = HexCharOfValue(current_bigit & 0xF);
640 buffer[string_index--] = HexCharOfValue(most_significant_bigit & 0xF);
/third_party/skia/third_party/externals/icu/source/i18n/
H A Ddouble-conversion-bignum.cpp622 int string_index = needed_chars - 1;
623 buffer[string_index--] = '\0';
626 buffer[string_index--] = '0';
632 buffer[string_index--] = HexCharOfValue(current_bigit & 0xF);
639 buffer[string_index--] = HexCharOfValue(most_significant_bigit & 0xF);
/third_party/node/deps/v8/src/runtime/
H A Druntime-regexp.cc1718 uint32_t string_index = 0; in RUNTIME_FUNCTION() local
1720 while (string_index < length) { in RUNTIME_FUNCTION()
1722 isolate, RegExpUtils::SetLastIndex(isolate, splitter, string_index)); in RUNTIME_FUNCTION()
1730 string_index = static_cast<uint32_t>( in RUNTIME_FUNCTION()
1731 RegExpUtils::AdvanceStringIndex(string, string_index, unicode)); in RUNTIME_FUNCTION()
1745 string_index = static_cast<uint32_t>( in RUNTIME_FUNCTION()
1746 RegExpUtils::AdvanceStringIndex(string, string_index, unicode)); in RUNTIME_FUNCTION()
1752 factory->NewSubString(string, prev_string_index, string_index); in RUNTIME_FUNCTION()
1781 string_index = prev_string_index; in RUNTIME_FUNCTION()
/third_party/vk-gl-cts/external/openglcts/modules/gles31/
H A Des31cArrayOfArraysTests.cpp1966 for (size_t string_index = 0; string_index < sizeof(input) / sizeof(input[0]); string_index++) in test_shader_compilation()
1971 shader_source += input[string_index]; in test_shader_compilation()
1978 } /* for (int string_index = 0; ...) */ in test_shader_compilation()
2180 for (size_t string_index = 0; string_index < sizeof(input) / sizeof(input[0]); string_index++) in test_shader_compilation()
2182 std::string shader_source = shader_start + " " + input[string_index] + shader_variable_declarations; in test_shader_compilation()
2189 } /* for (int string_index in test_shader_compilation()
[all...]
/third_party/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h712 #define GTEST_ATTRIBUTE_PRINTF_(string_index, first_to_check) \
713 __attribute__((format(__MINGW_PRINTF_FORMAT, string_index, first_to_check)))
715 #define GTEST_ATTRIBUTE_PRINTF_(string_index, first_to_check) \
716 __attribute__((format(printf, string_index, first_to_check)))
718 #define GTEST_ATTRIBUTE_PRINTF_(string_index, first_to_check)
/third_party/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-port.h667 # define GTEST_ATTRIBUTE_PRINTF_(string_index, first_to_check) \
668 __attribute__((__format__(__MINGW_PRINTF_FORMAT, string_index, \
671 # define GTEST_ATTRIBUTE_PRINTF_(string_index, first_to_check) \
672 __attribute__((__format__(__printf__, string_index, first_to_check)))
675 # define GTEST_ATTRIBUTE_PRINTF_(string_index, first_to_check)
/third_party/node/deps/googletest/include/gtest/internal/
H A Dgtest-port.h777 #define GTEST_ATTRIBUTE_PRINTF_(string_index, first_to_check) \
778 __attribute__((format(__MINGW_PRINTF_FORMAT, string_index, first_to_check)))
780 #define GTEST_ATTRIBUTE_PRINTF_(string_index, first_to_check) \
781 __attribute__((format(printf, string_index, first_to_check)))
783 #define GTEST_ATTRIBUTE_PRINTF_(string_index, first_to_check)
/third_party/skia/third_party/externals/freetype/src/cff/
H A Dcffload.c2208 CFF_IndexRec string_index; in FT_LOCAL_DEF() local
2213 FT_ZERO( &string_index ); in FT_LOCAL_DEF()
2323 FT_SET_ERROR( cff_index_init( &string_index, in FT_LOCAL_DEF()
2327 FT_SET_ERROR( cff_index_get_pointers( &string_index, in FT_LOCAL_DEF()
2343 font->num_strings = string_index.count; in FT_LOCAL_DEF()
2525 cff_index_done( &string_index ); in FT_LOCAL_DEF()

Completed in 37 milliseconds