MCPcopy Create free account
hub / github.com/apache/arrow / locate_utf8_utf8

Function locate_utf8_utf8

cpp/src/gandiva/precompiled/string_ops.cc:1841–1845  ·  view source on GitHub ↗

Search for a string within another string

Source from the content-addressed store, hash-verified

1839
1840// Search for a string within another string
1841FORCE_INLINE
1842gdv_int32 locate_utf8_utf8(gdv_int64 context, const char* sub_str, gdv_int32 sub_str_len,
1843 const char* str, gdv_int32 str_len) {
1844 return locate_utf8_utf8_int32(context, sub_str, sub_str_len, str, str_len, 1);
1845}
1846
1847// Search for a string within another string starting at position start-pos (1-indexed)
1848FORCE_INLINE

Callers 1

TESTFunction · 0.85

Calls 1

locate_utf8_utf8_int32Function · 0.85

Tested by 1

TESTFunction · 0.68