repo
stringlengths
1
152
file
stringlengths
14
221
code
stringlengths
501
25k
file_length
int64
501
25k
avg_line_length
float64
20
99.5
max_line_length
int64
21
134
extension_type
stringclasses
2 values
php-src
php-src-master/ext/hash/hash_ripemd.c
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundl...
24,952
30.868455
128
c
php-src
php-src-master/ext/hash/hash_sha3.c
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
10,581
28.808451
96
c
php-src
php-src-master/ext/hash/hash_snefru.c
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundl...
6,262
27.598174
99
c
php-src
php-src-master/ext/hash/hash_tiger.c
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundl...
8,080
28.173285
108
c
php-src
php-src-master/ext/hash/hash_whirlpool.c
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundl...
16,477
34.666667
105
c
php-src
php-src-master/ext/hash/hash_xxhash.c
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
8,391
30.197026
124
c
php-src
php-src-master/ext/hash/php_hash.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundl...
6,660
37.50289
108
h
php-src
php-src-master/ext/hash/php_hash_adler32.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
1,596
47.393939
120
h
php-src
php-src-master/ext/hash/php_hash_crc32.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
1,857
50.611111
114
h
php-src
php-src-master/ext/hash/php_hash_crc32_tables.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
10,517
50.307317
75
h
php-src
php-src-master/ext/hash/php_hash_fnv.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundl...
2,733
39.80597
106
h
php-src
php-src-master/ext/hash/php_hash_gost.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
1,544
40.756757
86
h
php-src
php-src-master/ext/hash/php_hash_haval.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
2,139
36.54386
134
h
php-src
php-src-master/ext/hash/php_hash_joaat.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundl...
1,471
45
103
h
php-src
php-src-master/ext/hash/php_hash_md.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
2,072
39.647059
95
h
php-src
php-src-master/ext/hash/php_hash_murmur.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
2,599
43.827586
123
h
php-src
php-src-master/ext/hash/php_hash_ripemd.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
3,117
45.537313
92
h
php-src
php-src-master/ext/hash/php_hash_sha.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
3,924
44.114943
94
h
php-src
php-src-master/ext/hash/php_hash_sha3.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
2,491
43.5
88
h
php-src
php-src-master/ext/hash/php_hash_snefru.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
1,621
39.55
86
h
php-src
php-src-master/ext/hash/php_hash_tiger.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
1,803
46.473684
98
h
php-src
php-src-master/ext/hash/php_hash_whirlpool.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
1,548
40.864865
92
h
php-src
php-src-master/ext/hash/php_hash_xxhash.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
3,465
45.837838
124
h
php-src
php-src-master/ext/hash/murmur/PMurHash.c
/*----------------------------------------------------------------------------- * MurmurHash3 was written by Austin Appleby, and is placed in the public * domain. * * This implementation was written by Shane Day, and is also public domain. * * This is a portable ANSI C implementation of MurmurHash3_x86_32 (Murmur...
7,209
30.762115
116
c
php-src
php-src-master/ext/hash/murmur/PMurHash.h
/*----------------------------------------------------------------------------- * MurmurHash3 was written by Austin Appleby, and is placed in the public * domain. * * This implementation was written by Shane Day, and is also public domain. * * This implementation was modified to match PMurHash128.cpp. */ /* ---...
891
26.875
83
h
php-src
php-src-master/ext/hash/murmur/PMurHash128.h
/*----------------------------------------------------------------------------- * MurmurHash3 was written by Austin Appleby, and is placed in the public * domain. * * This is a c++ implementation of MurmurHash3_128 with support for progressive * processing based on PMurHash implementation written by Shane Day. */...
1,391
33.8
115
h
php-src
php-src-master/ext/hash/murmur/endianness.h
static const union { uint8_t u8[2]; uint16_t u16; } EndianMix = {{ 1, 0 }}; FORCE_INLINE int IsBigEndian(void) { // Constant-folded by the compiler. return EndianMix.u16 != 1; } #if defined(_MSC_VER) # include <stdlib.h> # define BSWAP32(u) _byteswap_ulong(u) # define BSWAP64(u) _byteswap_uint64(u) #else # ...
2,229
25.235294
73
h
php-src
php-src-master/ext/hash/sha3/generic32lc/KeccakSponge.c
/* Implementation by the Keccak, Keyak and Ketje Teams, namely, Guido Bertoni, Joan Daemen, Michaël Peeters, Gilles Van Assche and Ronny Van Keer, hereby denoted as "the implementer". For more information, feedback or questions, please refer to our websites: http://keccak.noekeon.org/ http://keyak.noekeon.org/ http://...
3,049
26.477477
75
c
php-src
php-src-master/ext/hash/sha3/generic32lc/align.h
/* Implementation by the Keccak, Keyak and Ketje Teams, namely, Guido Bertoni, Joan Daemen, Michaël Peeters, Gilles Van Assche and Ronny Van Keer, hereby denoted as "the implementer". For more information, feedback or questions, please refer to our websites: http://keccak.noekeon.org/ http://keyak.noekeon.org/ http://...
938
25.828571
103
h
php-src
php-src-master/ext/hash/sha3/generic32lc/brg_endian.h
/* --------------------------------------------------------------------------- Copyright (c) 1998-2008, Brian Gladman, Worcester, UK. All rights reserved. LICENSE TERMS The redistribution and use of this software (with or without changes) is allowed without the payment of fees or royalties provided that: 1. s...
5,546
37.79021
84
h
php-src
php-src-master/ext/hash/sha3/generic64lc/KeccakSponge.c
/* Implementation by the Keccak, Keyak and Ketje Teams, namely, Guido Bertoni, Joan Daemen, Michaël Peeters, Gilles Van Assche and Ronny Van Keer, hereby denoted as "the implementer". For more information, feedback or questions, please refer to our websites: http://keccak.noekeon.org/ http://keyak.noekeon.org/ http://...
3,049
26.477477
75
c
php-src
php-src-master/ext/hash/sha3/generic64lc/align.h
/* Implementation by the Keccak, Keyak and Ketje Teams, namely, Guido Bertoni, Joan Daemen, Michaël Peeters, Gilles Van Assche and Ronny Van Keer, hereby denoted as "the implementer". For more information, feedback or questions, please refer to our websites: http://keccak.noekeon.org/ http://keyak.noekeon.org/ http://...
938
25.828571
103
h
php-src
php-src-master/ext/hash/sha3/generic64lc/brg_endian.h
/* --------------------------------------------------------------------------- Copyright (c) 1998-2008, Brian Gladman, Worcester, UK. All rights reserved. LICENSE TERMS The redistribution and use of this software (with or without changes) is allowed without the payment of fees or royalties provided that: 1. s...
5,546
37.79021
84
h
php-src
php-src-master/ext/iconv/iconv_arginfo.h
/* This is a generated file, edit the .stub.php file instead. * Stub hash: 4367fa431d3e4814e42d9aa514c10cae1d842d8f */ ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX(arginfo_iconv_strlen, 0, 1, MAY_BE_LONG|MAY_BE_FALSE) ZEND_ARG_TYPE_INFO(0, string, IS_STRING, 0) ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, encoding, IS_STRIN...
4,255
43.333333
122
h
php-src
php-src-master/ext/imap/php_imap.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
4,957
28.86747
79
h
php-src
php-src-master/ext/intl/intl_common.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,709
33.897959
76
h
php-src
php-src-master/ext/intl/intl_convert.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
4,910
31.098039
87
c
php-src
php-src-master/ext/intl/intl_convert.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,265
39.83871
75
h
php-src
php-src-master/ext/intl/intl_convertcpp.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,254
38.21875
91
h
php-src
php-src-master/ext/intl/intl_cppshims.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,178
34.727273
75
h
php-src
php-src-master/ext/intl/intl_data.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
5,460
39.451852
112
h
php-src
php-src-master/ext/intl/intl_error.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
6,660
22.789286
87
c
php-src
php-src-master/ext/intl/intl_error.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
2,290
43.921569
94
h
php-src
php-src-master/ext/intl/php_intl.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
7,531
26.093525
126
c
php-src
php-src-master/ext/intl/php_intl.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
2,478
32.053333
75
h
php-src
php-src-master/ext/intl/breakiterator/breakiterator_class.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
2,662
33.584416
96
h
php-src
php-src-master/ext/intl/breakiterator/breakiterator_iterators.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,485
35.243902
75
h
php-src
php-src-master/ext/intl/breakiterator/breakiterator_iterators_arginfo.h
/* This is a generated file, edit the .stub.php file instead. * Stub hash: 2b201b4c2f4fb706484085c9fff483d66a7285ea */ ZEND_BEGIN_ARG_WITH_TENTATIVE_RETURN_OBJ_INFO_EX(arginfo_class_IntlPartsIterator_getBreakIterator, 0, 0, IntlBreakIterator, 0) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_WITH_TENTATIVE_RETURN_TYPE_INFO_EX(a...
2,291
45.77551
126
h
php-src
php-src-master/ext/intl/breakiterator/codepointiterator_internal.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
2,854
26.451923
86
h
php-src
php-src-master/ext/intl/calendar/calendar_class.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
2,513
32.52
89
h
php-src
php-src-master/ext/intl/collator/collator.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,128
42.423077
75
h
php-src
php-src-master/ext/intl/collator/collator_attr.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
3,115
25.40678
80
c
php-src
php-src-master/ext/intl/collator/collator_class.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
3,521
27.868852
99
c
php-src
php-src-master/ext/intl/collator/collator_class.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
2,826
37.202703
81
h
php-src
php-src-master/ext/intl/collator/collator_compare.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
3,214
26.956522
77
c
php-src
php-src-master/ext/intl/collator/collator_convert.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,752
46.378378
85
h
php-src
php-src-master/ext/intl/collator/collator_create.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
2,701
29.704545
122
c
php-src
php-src-master/ext/intl/collator/collator_error.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
2,116
29.681159
75
c
php-src
php-src-master/ext/intl/collator/collator_functions_arginfo.h
/* This is a generated file, edit the .stub.php file instead. */ ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX(arginfo_collator_create, 0, 1, Collator, 1) ZEND_ARG_TYPE_INFO(0, locale, IS_STRING, 0) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX(arginfo_collator_compare, 0, 3, MAY_BE_LONG|MAY_BE_FALSE) ZEND_A...
2,510
38.857143
109
h
php-src
php-src-master/ext/intl/collator/collator_is_numeric.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
6,207
22.426415
126
c
php-src
php-src-master/ext/intl/collator/collator_is_numeric.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,188
44.730769
108
h
php-src
php-src-master/ext/intl/collator/collator_locale.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,994
31.177419
75
c
php-src
php-src-master/ext/intl/collator/collator_sort.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
16,182
27.642478
133
c
php-src
php-src-master/ext/intl/collator/collator_sort.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,092
44.541667
77
h
php-src
php-src-master/ext/intl/common/common_arginfo.h
/* This is a generated file, edit the .stub.php file instead. * Stub hash: 83971f2cec8c413d6207382e6ebc4ebf500e805f */ ZEND_BEGIN_ARG_WITH_TENTATIVE_RETURN_TYPE_INFO_EX(arginfo_class_IntlIterator_current, 0, 0, IS_MIXED, 0) ZEND_END_ARG_INFO() #define arginfo_class_IntlIterator_key arginfo_class_IntlIterator_current...
15,129
78.631579
125
h
php-src
php-src-master/ext/intl/common/common_date.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,429
34.75
134
h
php-src
php-src-master/ext/intl/common/common_enum.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
3,017
35.361446
93
h
php-src
php-src-master/ext/intl/common/common_error.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
2,215
26.358025
75
c
php-src
php-src-master/ext/intl/converter/converter.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://www.php.ne...
1,023
36.925926
73
h
php-src
php-src-master/ext/intl/dateformat/dateformat.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,934
29.714286
75
c
php-src
php-src-master/ext/intl/dateformat/dateformat.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,387
35.526316
75
h
php-src
php-src-master/ext/intl/dateformat/dateformat_attr.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
5,460
25.769608
117
c
php-src
php-src-master/ext/intl/dateformat/dateformat_class.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
3,946
33.622807
97
c
php-src
php-src-master/ext/intl/dateformat/dateformat_class.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
2,134
37.125
98
h
php-src
php-src-master/ext/intl/dateformat/dateformat_create.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
938
45.95
75
h
php-src
php-src-master/ext/intl/dateformat/dateformat_data.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,873
29.721311
77
c
php-src
php-src-master/ext/intl/dateformat/dateformat_data.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,289
34.833333
75
h
php-src
php-src-master/ext/intl/dateformat/dateformat_format.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
5,567
30.106145
129
c
php-src
php-src-master/ext/intl/dateformat/dateformat_helpers.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,388
34.615385
102
h
php-src
php-src-master/ext/intl/dateformat/datepatterngenerator_arginfo.h
/* This is a generated file, edit the .stub.php file instead. * Stub hash: 4456b13f7ed59847bbf129cd45b0d1f63ce70108 */ ZEND_BEGIN_ARG_INFO_EX(arginfo_class_IntlDatePatternGenerator___construct, 0, 0, 0) ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, locale, IS_STRING, 1, "null") ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_WITH_RE...
1,661
41.615385
128
h
php-src
php-src-master/ext/intl/dateformat/datepatterngenerator_class.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://w...
2,584
37.58209
109
h
php-src
php-src-master/ext/intl/formatter/formatter_attr.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
11,301
28.053985
119
c
php-src
php-src-master/ext/intl/formatter/formatter_class.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
3,765
33.550459
86
c
php-src
php-src-master/ext/intl/formatter/formatter_class.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,984
36.45283
98
h
php-src
php-src-master/ext/intl/formatter/formatter_data.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,824
28.435484
75
c
php-src
php-src-master/ext/intl/formatter/formatter_data.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,272
33.405405
75
h
php-src
php-src-master/ext/intl/formatter/formatter_format.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,093
39.518519
75
h
php-src
php-src-master/ext/intl/formatter/formatter_functions_arginfo.h
/* This is a generated file, edit the .stub.php file instead. */ ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX(arginfo_numfmt_create, 0, 2, NumberFormatter, 1) ZEND_ARG_TYPE_INFO(0, locale, IS_STRING, 0) ZEND_ARG_TYPE_INFO(0, style, IS_LONG, 0) ZEND_ARG_TYPE_INFO(0, pattern, IS_STRING, 0) ZEND_END_ARG_INFO() ZEND_BEGIN_A...
3,346
39.817073
113
h
php-src
php-src-master/ext/intl/formatter/formatter_main.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
4,230
27.979452
120
c
php-src
php-src-master/ext/intl/formatter/formatter_parse.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
5,205
28.91954
132
c
php-src
php-src-master/ext/intl/grapheme/grapheme.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,272
41.433333
75
h
php-src
php-src-master/ext/intl/grapheme/grapheme_string.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
20,448
23.937805
131
c
php-src
php-src-master/ext/intl/idn/idn.c
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
5,050
28.711765
103
c
php-src
php-src-master/ext/intl/idn/idn.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
1,113
40.259259
75
h
php-src
php-src-master/ext/intl/locale/locale.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,022
39.92
75
c
php-src
php-src-master/ext/intl/locale/locale.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,305
38.575758
75
h
php-src
php-src-master/ext/intl/locale/locale_class.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,341
34.315789
75
c
php-src
php-src-master/ext/intl/locale/locale_class.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
1,338
28.755556
75
h
php-src
php-src-master/ext/intl/msgformat/msgformat.c
/* +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | https://...
5,405
29.033333
124
c
php-src
php-src-master/ext/intl/msgformat/msgformat_arginfo.h
/* This is a generated file, edit the .stub.php file instead. * Stub hash: d595f5c582996ebb96ab39df8cb56c4cf6c8dfcf */ ZEND_BEGIN_ARG_INFO_EX(arginfo_class_MessageFormatter___construct, 0, 0, 2) ZEND_ARG_TYPE_INFO(0, locale, IS_STRING, 0) ZEND_ARG_TYPE_INFO(0, pattern, IS_STRING, 0) ZEND_END_ARG_INFO() ZEND_BEGIN_...
4,200
46.738636
133
h