/third_party/pcre2/pcre2/src/ |
D | pcre2_ord2utf.c | 59 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 …]
|
D | pcre2test.c | 3096 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/ |
D | pcre_ord2utf8.c | 64 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/ |
D | fork04.c | 169 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/ |
D | gvalue.c | 347 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/ |
D | utf8.c | 87 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()
|
D | ucptest.c | 193 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/ |
D | any_test_cv_to_rv_failed.cpp | 32 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/ |
D | jcphuff.c | 623 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/ |
D | jcphuff.c | 630 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/ |
D | jcphuff.c | 623 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/ |
D | gosxappinfo.m | 153 const gchar *cvalue; 162 cvalue = [value cStringUsingEncoding: NSUTF8StringEncoding]; 163 ret = g_strdup (cvalue);
|
/third_party/e2fsprogs/misc/ |
D | fuse2fs.c | 2603 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/ |
D | tinyxml.cpp | 780 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/ |
D | tinyxml.cpp | 780 void TiXmlElement::SetAttribute( const char * cname, const char * cvalue ) in SetAttribute() argument 784 attrib->SetValue( cvalue ); in SetAttribute()
|