Home
last modified time | relevance | path

Searched refs:cvalue (Results 1 – 15 of 15) sorted by relevance

/third_party/pcre2/pcre2/src/
Dpcre2_ord2utf.c59 PRIV(ord2utf)(uint32_t cvalue, PCRE2_UCHAR *buffer) in PRIV()
61 (void)(cvalue); in PRIV()
81 PRIV(ord2utf)(uint32_t cvalue, PCRE2_UCHAR *buffer) in PRIV()
88 if ((int)cvalue <= PRIV(utf8_table1)[i]) break; in PRIV()
92 *buffer-- = 0x80 | (cvalue & 0x3f); in PRIV()
93 cvalue >>= 6; in PRIV()
95 *buffer = PRIV(utf8_table2)[i] | cvalue; in PRIV()
101 if (cvalue <= 0xffff) in PRIV()
103 *buffer = (PCRE2_UCHAR)cvalue; in PRIV()
106 cvalue -= 0x10000; in PRIV()
[all …]
Dpcre2test.c3096 ord2utf8(uint32_t cvalue, uint8_t *utf8bytes) in ord2utf8() argument
3099 if (cvalue > 0x7fffffffu) in ord2utf8()
3102 if (cvalue <= (uint32_t)utf8_table1[i]) break; in ord2utf8()
3106 *utf8bytes-- = 0x80 | (cvalue & 0x3f); in ord2utf8()
3107 cvalue >>= 6; in ord2utf8()
3109 *utf8bytes = utf8_table2[i] | cvalue; in ord2utf8()
/third_party/glib/glib/pcre/
Dpcre_ord2utf8.c64 PRIV(ord2utf)(pcre_uint32 cvalue, pcre_uchar *buffer) in PRIV()
72 if ((cvalue & 0xf800) == 0xd800 || cvalue >= 0x110000) in PRIV()
73 cvalue = 0xfffe; in PRIV()
76 if ((int)cvalue <= PRIV(utf8_table1)[i]) break; in PRIV()
80 *buffer-- = 0x80 | (cvalue & 0x3f); in PRIV()
81 cvalue >>= 6; in PRIV()
83 *buffer = PRIV(utf8_table2)[i] | cvalue; in PRIV()
88 (void)(cvalue); /* Keep compiler happy; this function won't ever be */ in PRIV()
/third_party/ltp/testcases/kernel/syscalls/fork/
Dfork04.c169 char *penv, *cenv, *pvalue, *cvalue; in cmp_env_strings() local
195 cvalue = strchr(cstring, ':'); in cmp_env_strings()
196 if (cvalue == NULL) { in cmp_env_strings()
202 *cvalue = '\0'; in cmp_env_strings()
203 cvalue++; in cmp_env_strings()
204 if (*cvalue == '\0') { in cmp_env_strings()
217 if (strcmp(pvalue, cvalue) != 0) { in cmp_env_strings()
220 penv, pvalue, cvalue); in cmp_env_strings()
223 penv, cvalue); in cmp_env_strings()
/third_party/glib/gobject/
Dgvalue.c347 GTypeCValue cvalue; in g_value_set_instance() local
363 memset (&cvalue, 0, sizeof (cvalue)); in g_value_set_instance()
364 cvalue.v_pointer = instance; in g_value_set_instance()
372 error_msg = value_table->collect_value (value, 1, &cvalue, 0); in g_value_set_instance()
421 GTypeCValue cvalue; in g_value_init_from_instance() local
430 memset (&cvalue, 0, sizeof (cvalue)); in g_value_init_from_instance()
431 cvalue.v_pointer = instance; in g_value_init_from_instance()
436 error_msg = value_table->collect_value (value, 1, &cvalue, 0); in g_value_init_from_instance()
/third_party/pcre2/pcre2/maint/
Dutf8.c87 ord2utf8(unsigned long int cvalue, unsigned char *buffer) in ord2utf8() argument
91 if (cvalue <= utf8_table1[i]) break; in ord2utf8()
96 *buffer-- = 0x80 | (cvalue & 0x3f); in ord2utf8()
97 cvalue >>= 6; in ord2utf8()
99 *buffer = utf8_table2[i] | cvalue; in ord2utf8()
Ducptest.c193 ord2utf8(unsigned int cvalue, unsigned char *buffer) in ord2utf8() argument
197 if (cvalue <= utf8_table1[i]) break; in ord2utf8()
202 *buffer-- = 0x80 | (cvalue & 0x3f); in ord2utf8()
203 cvalue >>= 6; in ord2utf8()
205 *buffer = utf8_table2[i] | cvalue; in ord2utf8()
/third_party/boost/libs/any/test/
Dany_test_cv_to_rv_failed.cpp32 boost::any const cvalue(10); in main() local
33 int i = boost::any_cast<int&&>(cvalue); in main()
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/
Djcphuff.c623 cvalue += r; \
625 temp = cvalue[0]; \
626 temp2 = cvalue[DCTSIZE2]; \
647 cvalue++; \
662 const JCOEF *cvalue; in encode_mcu_AC_first() local
675 cvalue = values = (JCOEF *)PAD((size_t)values_unaligned, 16); in encode_mcu_AC_first()
678 cvalue = values = values_unaligned; in encode_mcu_AC_first()
705 int diff = ((values + DCTSIZE2 / 2) - cvalue); in encode_mcu_AC_first()
708 cvalue += r; in encode_mcu_AC_first()
715 if (cvalue < (values + Sl)) { /* If there are trailing zeroes, */ in encode_mcu_AC_first()
/third_party/skia/third_party/externals/libjpeg-turbo/
Djcphuff.c630 cvalue += r; \
632 temp = cvalue[0]; \
633 temp2 = cvalue[DCTSIZE2]; \
654 cvalue++; \
669 const JCOEF *cvalue; in encode_mcu_AC_first() local
682 cvalue = values = (JCOEF *)PAD((size_t)values_unaligned, 16); in encode_mcu_AC_first()
685 cvalue = values = values_unaligned; in encode_mcu_AC_first()
712 int diff = ((values + DCTSIZE2 / 2) - cvalue); in encode_mcu_AC_first()
715 cvalue += r; in encode_mcu_AC_first()
722 if (cvalue < (values + Sl)) { /* If there are trailing zeroes, */ in encode_mcu_AC_first()
/third_party/libjpeg-turbo/
Djcphuff.c623 cvalue += r; \
625 temp = cvalue[0]; \
626 temp2 = cvalue[DCTSIZE2]; \
647 cvalue++; \
662 const JCOEF *cvalue; in encode_mcu_AC_first() local
675 cvalue = values = (JCOEF *)PAD((size_t)values_unaligned, 16); in encode_mcu_AC_first()
678 cvalue = values = values_unaligned; in encode_mcu_AC_first()
705 int diff = ((values + DCTSIZE2 / 2) - cvalue); in encode_mcu_AC_first()
708 cvalue += r; in encode_mcu_AC_first()
715 if (cvalue < (values + Sl)) { /* If there are trailing zeroes, */ in encode_mcu_AC_first()
/third_party/glib/gio/
Dgosxappinfo.m153 const gchar *cvalue;
162 cvalue = [value cStringUsingEncoding: NSUTF8StringEncoding];
163 ret = g_strdup (cvalue);
/third_party/e2fsprogs/misc/
Dfuse2fs.c2603 const void *cvalue; in op_setxattr() local
2643 cvalue = value; in op_setxattr()
2647 err = xt->set(value, len, &cvalue, &clen); in op_setxattr()
2653 err = ext2fs_xattr_set(h, key, cvalue, clen); in op_setxattr()
2661 if (cvalue != value) in op_setxattr()
2662 ext2fs_free_mem(&cvalue); in op_setxattr()
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/test/tinyxml/
Dtinyxml.cpp780 void TiXmlElement::SetAttribute( const char * cname, const char * cvalue ) in SetAttribute() argument
784 attrib->SetValue( cvalue ); in SetAttribute()
/third_party/skia/third_party/externals/sfntly/cpp/src/test/tinyxml/
Dtinyxml.cpp780 void TiXmlElement::SetAttribute( const char * cname, const char * cvalue ) in SetAttribute() argument
784 attrib->SetValue( cvalue ); in SetAttribute()