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
null
systemd-main/src/udev/udevadm-test.c
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright © 2003-2004 Greg Kroah-Hartman <greg@kroah.com> */ #include <errno.h> #include <getopt.h> #include <signal.h> #include <stddef.h> #include <stdio.h> #include <stdlib.h> #include <sys/signalfd.h> #include <unistd.h> #include "sd-device.h" #include "devi...
5,076
32.622517
113
c
null
systemd-main/src/udev/udevadm-util.c
/* SPDX-License-Identifier: GPL-2.0-or-later */ #include <errno.h> #include "alloc-util.h" #include "bus-error.h" #include "bus-util.h" #include "device-private.h" #include "path-util.h" #include "udevadm-util.h" #include "unit-name.h" static int find_device_from_unit(const char *unit_name, sd_device **ret) { ...
3,665
28.328
110
c
null
systemd-main/src/udev/udevadm-verify.c
/* SPDX-License-Identifier: GPL-2.0-or-later */ #include <errno.h> #include <getopt.h> #include <stddef.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include "conf-files.h" #include "constants.h" #include "log.h" #include "parse-argument.h" #include "pretty-print.h" #include "stat-util.h" #include "s...
8,500
34.869198
125
c
null
systemd-main/src/udev/udevadm-wait.c
/* SPDX-License-Identifier: GPL-2.0-or-later */ #include <getopt.h> #include <unistd.h> #include "sd-event.h" #include "alloc-util.h" #include "chase.h" #include "device-monitor-private.h" #include "device-util.h" #include "errno-util.h" #include "event-util.h" #include "fd-util.h" #include "fs-util.h" #include "ino...
15,878
33.594771
120
c
null
systemd-main/src/udev/udevadm.c
/* SPDX-License-Identifier: GPL-2.0-or-later */ #include <errno.h> #include <getopt.h> #include <stddef.h> #include <stdio.h> #include "alloc-util.h" #include "main-func.h" #include "pretty-print.h" #include "process-util.h" #include "selinux-util.h" #include "string-util.h" #include "udev-util.h" #include "udevadm.h...
4,689
32.262411
102
c
null
systemd-main/src/udev/udevadm.h
/* SPDX-License-Identifier: GPL-2.0-or-later */ #pragma once #include <stdio.h> #include "macro.h" int info_main(int argc, char *argv[], void *userdata); int trigger_main(int argc, char *argv[], void *userdata); int settle_main(int argc, char *argv[], void *userdata); int control_main(int argc, char *argv[], void *u...
892
34.72
65
h
null
systemd-main/src/udev/fido_id/fido_id.c
/* SPDX-License-Identifier: LGPL-2.1-or-later */ /* * Identifies FIDO CTAP1 ("U2F")/CTAP2 security tokens based on the usage declared in their report * descriptor and outputs suitable environment variables. * * Inspired by Andrew Lutomirski's 'u2f-hidraw-policy.c' */ #include <errno.h> #include <fcntl.h> #include...
4,432
33.1
106
c
null
systemd-main/src/udev/fido_id/fido_id_desc.c
/* SPDX-License-Identifier: LGPL-2.1-or-later */ /* Inspired by Andrew Lutomirski's 'u2f-hidraw-policy.c' */ #include <errno.h> #include <stdbool.h> #include <stddef.h> #include <stdint.h> #include "fido_id_desc.h" #define HID_RPTDESC_FIRST_BYTE_LONG_ITEM 0xfeu #define HID_RPTDESC_TYPE_GLOBAL 0x1u #define HID_RPTDES...
4,053
42.591398
129
c
null
systemd-main/src/udev/fido_id/fuzz-fido-id-desc.c
/* SPDX-License-Identifier: LGPL-2.1-or-later */ #include <linux/hid.h> #include <stdbool.h> #include <stdint.h> #include <stdlib.h> #include "fido_id_desc.h" #include "fuzz.h" #include "log.h" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { /* We don't want to fill the logs with messages abou...
655
25.24
75
c
null
systemd-main/src/udev/fido_id/test-fido-id-desc.c
/* SPDX-License-Identifier: LGPL-2.1-or-later */ #include <stdint.h> #include <stdlib.h> #include "fido_id_desc.h" #include "macro.h" #include "tests.h" TEST(is_fido_security_token_desc__fido) { static const uint8_t FIDO_HID_DESC_1[] = { 0x06, 0xd0, 0xf1, 0x09, 0x01, 0xa1, 0x01, 0x09, 0x20, 0...
4,359
52.82716
105
c
null
systemd-main/src/udev/iocost/iocost.c
/* SPDX-License-Identifier: LGPL-2.1-or-later */ #include <errno.h> #include <getopt.h> #include <stdio.h> #include <unistd.h> #include "sd-device.h" #include "alloc-util.h" #include "build.h" #include "cgroup-util.h" #include "conf-parser.h" #include "devnum-util.h" #include "device-util.h" #include "main-func.h" #...
10,589
31.584615
122
c
null
systemd-main/src/udev/mtd_probe/mtd_probe.c
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright © 2010 - Maxim Levitsky * * mtd_probe is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option)...
2,823
30.032967
95
c
null
systemd-main/src/udev/mtd_probe/mtd_probe.h
/* SPDX-License-Identifier: GPL-2.0-or-later */ #pragma once /* * Copyright © 2010 - Maxim Levitsky * * mtd_probe is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (a...
1,657
30.283019
74
h
null
systemd-main/src/udev/mtd_probe/probe_smartmedia.c
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright © 2010 - Maxim Levitsky * * mtd_probe is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option)...
3,158
31.234694
90
c
null
systemd-main/src/udev/net/fuzz-link-parser.c
/* SPDX-License-Identifier: LGPL-2.1-or-later */ #include "fd-util.h" #include "fs-util.h" #include "fuzz.h" #include "link-config.h" #include "tmpfile-util.h" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { _cleanup_(link_config_ctx_freep) LinkConfigContext *ctx = NULL; _cleanup_(unlin...
865
28.862069
85
c
null
systemd-main/src/udev/net/link-config.h
/* SPDX-License-Identifier: LGPL-2.1-or-later */ #pragma once #include "sd-device.h" #include "sd-netlink.h" #include "condition.h" #include "conf-parser.h" #include "ethtool-util.h" #include "hashmap.h" #include "list.h" #include "net-condition.h" #include "netif-naming-scheme.h" typedef struct LinkConfigContext Li...
3,564
29.211864
94
h
null
systemd-main/src/udev/scsi_id/scsi.h
/* SPDX-License-Identifier: GPL-2.0-or-later */ #pragma once /* * scsi.h * * General scsi and linux scsi specific defines and structs. * * Copyright (C) IBM Corp. 2003 * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License a...
2,699
25.732673
81
h
null
systemd-main/src/udev/scsi_id/scsi_id.h
/* SPDX-License-Identifier: GPL-2.0-or-later */ #pragma once /* * Copyright © IBM Corp. 2003 */ #define MAX_PATH_LEN 512 /* * MAX_ATTR_LEN: maximum length of the result of reading a sysfs * attribute. */ #define MAX_ATTR_LEN 256 /* * MAX_SERIAL_LEN: the maximum length of the serial number, including * added ...
1,626
24.421875
95
h
null
systemd-main/src/udev/v4l_id/v4l_id.c
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright (c) 2009 Filippo Argiolas <filippo.argiolas@gmail.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of t...
3,880
33.04386
83
c
null
systemd-main/src/update-done/update-done.c
/* SPDX-License-Identifier: LGPL-2.1-or-later */ #include <sys/stat.h> #include <sys/types.h> #include <unistd.h> #include "alloc-util.h" #include "fileio-label.h" #include "selinux-util.h" #include "time-util.h" #define MESSAGE \ "# This file was creat...
1,855
29.933333
92
c
null
systemd-main/src/user-sessions/user-sessions.c
/* SPDX-License-Identifier: LGPL-2.1-or-later */ #include <errno.h> #include <fcntl.h> #include <sys/stat.h> #include <sys/types.h> #include <unistd.h> #include "fileio.h" #include "fileio-label.h" #include "fs-util.h" #include "main-func.h" #include "log.h" #include "selinux-util.h" #include "string-util.h" static ...
1,058
23.627907
96
c
null
systemd-main/src/userdb/userdbd-manager.h
/* SPDX-License-Identifier: LGPL-2.1-or-later */ #pragma once #include "sd-bus.h" #include "sd-event.h" typedef struct Manager Manager; #include "hashmap.h" #include "ratelimit.h" #define USERDB_WORKERS_MIN 3 #define USERDB_WORKERS_MAX 4096 struct Manager { sd_event *event; Set *workers_fixed; ...
720
20.848485
83
h
null
systemd-main/src/userdb/userdbd.c
/* SPDX-License-Identifier: LGPL-2.1-or-later */ #include <sys/stat.h> #include <sys/types.h> #include "daemon-util.h" #include "userdbd-manager.h" #include "log.h" #include "main-func.h" #include "signal-util.h" /* This service offers two Varlink services, both implementing io.systemd.UserDatabase: * * → ...
2,050
33.183333
124
c
null
systemd-main/src/vconsole/vconsole-setup.c
/* SPDX-License-Identifier: LGPL-2.1-or-later */ /*** Copyright © 2016 Michal Soltys <soltys@ziu.info> ***/ #include <errno.h> #include <fcntl.h> #include <limits.h> #include <linux/kd.h> #include <linux/tiocl.h> #include <linux/vt.h> #include <stdbool.h> #include <stdlib.h> #include <sys/ioctl.h> #include <sysexits...
21,675
33.904992
129
c
null
systemd-main/src/xdg-autostart-generator/fuzz-xdg-desktop.c
/* SPDX-License-Identifier: LGPL-2.1-or-later */ #include "alloc-util.h" #include "fd-util.h" #include "fs-util.h" #include "fuzz.h" #include "rm-rf.h" #include "string-util.h" #include "strv.h" #include "tests.h" #include "tmpfile-util.h" #include "xdg-autostart-service.h" int LLVMFuzzerTestOneInput(const uint8_t *d...
1,351
32.8
83
c
null
systemd-main/src/xdg-autostart-generator/test-xdg-autostart.c
/* SPDX-License-Identifier: LGPL-2.1-or-later */ #include "alloc-util.h" #include "fd-util.h" #include "fs-util.h" #include "string-util.h" #include "strv.h" #include "tests.h" #include "tmpfile-util.h" #include "xdg-autostart-service.h" TEST(translate_name) { _cleanup_free_ char *t = NULL; assert_se...
3,741
34.638095
111
c
null
systemd-main/src/xdg-autostart-generator/xdg-autostart-condition.c
/* SPDX-License-Identifier: LGPL-2.1-or-later */ #include "main-func.h" #include "strv.h" /* * This binary is intended to be run as an ExecCondition= in units generated * by the xdg-autostart-generator. It does the appropriate checks against * XDG_CURRENT_DESKTOP that are too advanced for simple ConditionEnvironme...
1,628
34.413043
132
c
null
systemd-main/src/xdg-autostart-generator/xdg-autostart-service.h
/* SPDX-License-Identifier: LGPL-2.1-or-later */ #pragma once #include "macro.h" typedef struct XdgAutostartService { char *name; char *path; char *description; /* Name in XDG desktop file */ char *type; /* Purely as an assertion check */ char *exec_string; char *worki...
1,105
28.891892
94
h
piclas
piclas-master/src/piclas.h
!=================================================================================================================================== ! Here, preprocessor variables for different equation systems and abbreviations for specific expressions are defined !=====================================================================...
9,217
27.896552
133
h
piclas
piclas-master/src/output/read_userblock.c
#include <string.h> #include <stdio.h> extern char userblock_start; extern char userblock_end; extern char userblock_size; long get_userblock_size_(void) { //return (unsigned long)(&userblock_size); // Fixes mysterious bug occurring on some systems potentially due to the new GCC 7.3 // where userblock_size i...
2,054
25.346154
93
c
piclas
piclas-master/src/posti/visu/pluginTypes_visu.h
/* !================================================================================================================================= ! Copyright (c) 2016 Prof. Claus-Dieter Munz ! This file is part of FLEXI, a high-order accurate framework for numerically solving PDEs with discontinuous Galerkin methods. ! For more i...
1,397
34.846154
130
h
piclas
piclas-master/src/posti/visu/paraviewReader/visuReader.h
/* !================================================================================================================================= ! Copyright (c) 2016 Prof. Claus-Dieter Munz ! This file is part of FLEXI, a high-order accurate framework for numerically solving PDEs with discontinuous Galerkin methods. ! For more ...
5,381
33.5
130
h
npci
npci-master/src/npci.c
#include <errno.h> #include <math.h> #include <stdbool.h> #include <stddef.h> #include <string.h> #ifdef HAVE_ALLOCA_H # include <alloca.h> #elif !defined alloca # ifdef __GNUC__ # define alloca __builtin_alloca # elif defined(__DECC) # define alloca __ALLOCA # elif defined(_MSC_VER) # include <malloc.h> # define...
13,525
28.150862
121
c
php-src
php-src-master/TSRM/tsrm_win32.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
3,084
27.831776
101
h
php-src
php-src-master/Zend/zend_alloc_sizes.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
2,629
39.461538
99
h
php-src
php-src-master/Zend/zend_arena.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
6,063
25.951111
105
h
php-src
php-src-master/Zend/zend_atomic.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,984
40.354167
78
c
php-src
php-src-master/Zend/zend_atomic.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,682
30.572222
98
h
php-src
php-src-master/Zend/zend_build.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
1,626
33.617021
75
h
php-src
php-src-master/Zend/zend_builtin_functions.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
1,513
49.466667
100
h
php-src
php-src-master/Zend/zend_call_stack.c
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
14,837
26.734579
134
c
php-src
php-src-master/Zend/zend_call_stack.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
2,800
29.445652
130
h
php-src
php-src-master/Zend/zend_closures_arginfo.h
/* This is a generated file, edit the .stub.php file instead. * Stub hash: e3b480674671a698814db282c5ea34d438fe519d */ ZEND_BEGIN_ARG_INFO_EX(arginfo_class_Closure___construct, 0, 0, 0) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX(arginfo_class_Closure_bind, 0, 2, Closure, 1) ZEND_ARG_OBJ_INFO(0, clos...
2,084
37.611111
100
h
php-src
php-src-master/Zend/zend_config.w32.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
2,041
32.47541
75
h
php-src
php-src-master/Zend/zend_constants_arginfo.h
/* This is a generated file, edit the .stub.php file instead. * Stub hash: df76f4e5a735baba96c4ac3538e9e3e48d934f0f */ static void register_zend_constants_symbols(int module_number) { REGISTER_LONG_CONSTANT("E_ERROR", E_ERROR, CONST_PERSISTENT); REGISTER_LONG_CONSTANT("E_WARNING", E_WARNING, CONST_PERSISTENT); R...
1,876
57.65625
108
h
php-src
php-src-master/Zend/zend_cpuinfo.c
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
4,783
30.064935
119
c
php-src
php-src-master/Zend/zend_cpuinfo.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
9,097
32.326007
87
h
php-src
php-src-master/Zend/zend_default_classes.c
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
1,845
40.954545
75
c
php-src
php-src-master/Zend/zend_dtrace.c
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
4,313
34.360656
111
c
php-src
php-src-master/Zend/zend_dtrace.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
2,051
40.877551
112
h
php-src
php-src-master/Zend/zend_enum_arginfo.h
/* This is a generated file, edit the .stub.php file instead. * Stub hash: 7092f1d4ba651f077cff37050899f090f00abf22 */ ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_class_UnitEnum_cases, 0, 0, IS_ARRAY, 0) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_class_BackedEnum_from, 0, 1, IS_STATIC, 0...
1,704
33.1
134
h
php-src
php-src-master/Zend/zend_fibers_arginfo.h
/* This is a generated file, edit the .stub.php file instead. * Stub hash: e82bbc8e81fe98873a9a5697a4b38e63a24379da */ ZEND_BEGIN_ARG_INFO_EX(arginfo_class_Fiber___construct, 0, 0, 1) ZEND_ARG_TYPE_INFO(0, callback, IS_CALLABLE, 0) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_class_Fiber_star...
3,569
35.804124
98
h
php-src
php-src-master/Zend/zend_float.c
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
1,796
30.526316
75
c
php-src
php-src-master/Zend/zend_float.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
15,438
36.112981
95
h
php-src
php-src-master/Zend/zend_gc.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
4,668
28
82
h
php-src
php-src-master/Zend/zend_gdb.c
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
4,473
27.138365
95
c
php-src
php-src-master/Zend/zend_gdb.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
1,420
49.75
75
h
php-src
php-src-master/Zend/zend_generators_arginfo.h
/* This is a generated file, edit the .stub.php file instead. * Stub hash: 0af5e8985dd4645bf23490b8cec312f8fd1fee2e */ ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_class_Generator_rewind, 0, 0, IS_VOID, 0) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_class_Generator_valid, 0, 0, _IS_BOOL, 0...
2,787
35.684211
105
h
php-src
php-src-master/Zend/zend_globals.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
9,751
24.462141
91
h
php-src
php-src-master/Zend/zend_globals_macros.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
2,810
38.041667
101
h
php-src
php-src-master/Zend/zend_highlight.c
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
5,885
24.480519
89
c
php-src
php-src-master/Zend/zend_highlight.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
2,296
44.039216
124
h
php-src
php-src-master/Zend/zend_hrtime.c
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
2,092
28.478873
82
c
php-src
php-src-master/Zend/zend_ini_scanner.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
1,901
49.052632
84
h
php-src
php-src-master/Zend/zend_istdiostream.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
1,537
42.942857
75
h
php-src
php-src-master/Zend/zend_iterators.c
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
3,344
30.556604
82
c
php-src
php-src-master/Zend/zend_iterators.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
3,786
40.163043
75
h
php-src
php-src-master/Zend/zend_language_scanner.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
3,044
34.406977
117
h
php-src
php-src-master/Zend/zend_list.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
3,483
44.246753
132
h
php-src
php-src-master/Zend/zend_llist.c
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
6,885
21.070513
114
c
php-src
php-src-master/Zend/zend_llist.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
4,001
42.5
115
h
php-src
php-src-master/Zend/zend_long.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
4,227
31.775194
81
h
php-src
php-src-master/Zend/zend_map_ptr.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
3,006
35.670732
75
h
php-src
php-src-master/Zend/zend_max_execution_timer.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
1,483
39.108108
75
h
php-src
php-src-master/Zend/zend_mmap.h
/* +----------------------------------------------------------------------+ | This source file is subject to version 2.00 of the Zend 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...
1,512
32.622222
98
h
php-src
php-src-master/Zend/zend_modules.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
4,830
35.598485
131
h
php-src
php-src-master/Zend/zend_multiply.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
10,208
27.596639
120
h
php-src
php-src-master/Zend/zend_objects.c
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
10,122
32.190164
130
c
php-src
php-src-master/Zend/zend_objects.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
1,814
49.416667
105
h
php-src
php-src-master/Zend/zend_objects_API.c
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
6,868
31.866029
129
c
php-src
php-src-master/Zend/zend_objects_API.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
4,631
38.589744
116
h
php-src
php-src-master/Zend/zend_ptr_stack.c
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
3,020
24.601695
99
c
php-src
php-src-master/Zend/zend_ptr_stack.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
4,296
35.109244
116
h
php-src
php-src-master/Zend/zend_range_check.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
3,000
43.132353
104
h
php-src
php-src-master/Zend/zend_smart_str.c
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
6,980
30.165179
119
c
php-src
php-src-master/Zend/zend_smart_str.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
6,934
33.502488
120
h
php-src
php-src-master/Zend/zend_smart_str_public.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
1,159
41.962963
75
h
php-src
php-src-master/Zend/zend_smart_string.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
4,207
35.912281
122
h
php-src
php-src-master/Zend/zend_smart_string_public.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
1,240
40.366667
75
h
php-src
php-src-master/Zend/zend_sort.c
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
9,439
29.649351
128
c
php-src
php-src-master/Zend/zend_sort.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
1,535
51.965517
106
h
php-src
php-src-master/Zend/zend_stream.c
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
8,382
28.00692
108
c
php-src
php-src-master/Zend/zend_stream.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
3,616
34.811881
95
h
php-src
php-src-master/Zend/zend_string.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
22,404
33.790373
128
h
php-src
php-src-master/Zend/zend_strtod.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
2,151
45.782609
95
h
php-src
php-src-master/Zend/zend_strtod_int.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
3,135
23.5
108
h
php-src
php-src-master/Zend/zend_system_id.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
1,404
44.322581
129
h
php-src
php-src-master/Zend/zend_variables.c
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
4,747
33.911765
106
c
php-src
php-src-master/Zend/zend_variables.h
/* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) | +---------...
3,065
31.967742
75
h
php-src
php-src-master/Zend/zend_virtual_cwd.h
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is ...
12,774
31.341772
119
h