keyword
stringclasses
7 values
repo_name
stringlengths
8
98
file_path
stringlengths
4
244
file_extension
stringclasses
29 values
file_size
int64
0
84.1M
line_count
int64
0
1.6M
content
stringlengths
1
84.1M
language
stringclasses
14 values
3D
mcellteam/mcell
libs/jsoncpp/example/readFromString/readFromString.cpp
.cpp
1,094
38
#include "json/json.h" #include <iostream> /** * \brief Parse a raw string into Value object using the CharReaderBuilder * class, or the legacy Reader class. * Example Usage: * $g++ readFromString.cpp -ljsoncpp -std=c++11 -o readFromString * $./readFromString * colin * 20 */ int main() { const std::string raw...
C++
3D
mcellteam/mcell
libs/jsoncpp/example/stringWrite/stringWrite.cpp
.cpp
785
34
#include "json/json.h" #include <iostream> /** \brief Write a Value object to a string. * Example Usage: * $g++ stringWrite.cpp -ljsoncpp -std=c++11 -o stringWrite * $./stringWrite * { * "action" : "run", * "data" : * { * "number" : 1 * } * } */ int main() { Json::Value root; Json...
C++
3D
mcellteam/mcell
libs/jsoncpp/example/readFromStream/readFromStream.cpp
.cpp
727
31
#include "json/json.h" #include <fstream> #include <iostream> /** \brief Parse from stream, collect comments and capture error info. * Example Usage: * $g++ readFromStream.cpp -ljsoncpp -std=c++11 -o readFromStream * $./readFromStream * // comment head * { * // comment before * "key" : "value" * } * // c...
C++
3D
mcellteam/mcell
libs/jsoncpp/example/streamWrite/streamWrite.cpp
.cpp
500
23
#include "json/json.h" #include <iostream> /** \brief Write the Value object to a stream. * Example Usage: * $g++ streamWrite.cpp -ljsoncpp -std=c++11 -o streamWrite * $./streamWrite * { * "Age" : 20, * "Name" : "robin" * } */ int main() { Json::Value root; Json::StreamWriterBuilder builder; const...
C++
3D
mcellteam/mcell
libs/win_getopt/win_getopt.h
.h
18,500
654
#ifndef __GETOPT_H__ /** * DISCLAIMER * This file is part of the mingw-w64 runtime package. * * The mingw-w64 runtime package and its code is distributed in the hope that it * will be useful but WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESSED OR * IMPLIED ARE HEREBY DISCLAIMED. This includes but is not limite...
Unknown
3D
mcellteam/mcell
libs/gperftools/ltmain.sh
.sh
324,737
11,171
#! /bin/sh ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in ## by inline-source v2014-01-03.01 # libtool (GNU libtool) 2.4.6 # Provide generalized library-building support services. # Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996 # Copyright (C) 1996-2015 Free Software Foundati...
Shell
3D
mcellteam/mcell
libs/gperftools/autogen.sh
.sh
25
4
#!/bin/sh autoreconf -i
Shell
3D
mcellteam/mcell
libs/gperftools/packages/deb.sh
.sh
2,560
75
#!/bin/bash -e # This takes one commandline argument, the name of the package. If no # name is given, then we'll end up just using the name associated with # an arbitrary .tar.gz file in the rootdir. That's fine: there's probably # only one. # # Run this from the 'packages' directory, just under rootdir ## Set LIB ...
Shell
3D
mcellteam/mcell
libs/gperftools/packages/rpm.sh
.sh
2,661
87
#!/bin/sh -e # Run this from the 'packages' directory, just under rootdir # We can only build rpm packages, if the rpm build tools are installed if [ \! -x /usr/bin/rpmbuild ] then echo "Cannot find /usr/bin/rpmbuild. Not building an rpm." 1>&2 exit 0 fi # Check the commandline flags PACKAGE="$1" VERSION="$2" fu...
Shell
3D
mcellteam/mcell
libs/gperftools/benchmark/binary_trees.cc
.cc
2,832
109
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // // Copied from // http://benchmarksgame.alioth.debian.org/u64q/program.php?test=binarytrees&lang=gpp&id=2 // and slightly modified (particularly by adding multi-threaded // operation to hit malloc harder). // // This version of binary trees is mostly new...
Unknown
3D
mcellteam/mcell
libs/gperftools/benchmark/malloc_bench.cc
.cc
8,769
294
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of condit...
Unknown
3D
mcellteam/mcell
libs/gperftools/benchmark/run_benchmark.h
.h
1,882
44
// -*- Mode: C; c-basic-offset: 2; indent-tabs-mode: nil -*- // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditio...
Unknown
3D
mcellteam/mcell
libs/gperftools/benchmark/run_benchmark.c
.c
3,351
113
// -*- Mode: C; c-basic-offset: 2; indent-tabs-mode: nil -*- // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditio...
C
3D
mcellteam/mcell
libs/gperftools/src/emergency_malloc.h
.h
2,649
61
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2014, gperftools Contributors // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/profiler.cc
.cc
14,833
429
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/malloc_hook.cc
.cc
26,372
712
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/tcmalloc_guard.h
.h
2,195
50
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/central_freelist.cc
.cc
12,647
388
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/heap-checker.cc
.cc
100,182
2,389
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/heap-profile-table.h
.h
14,779
400
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2006, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/stacktrace_instrument-inl.h
.h
5,611
156
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2013, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/stacktrace_arm-inl.h
.h
6,124
149
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2011, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/memory_region_map.cc
.cc
34,606
839
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- /* Copyright (c) 2006, Google Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/heap-checker-bcad.cc
.cc
4,150
94
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/thread_cache.cc
.cc
18,470
530
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/stacktrace_win32-inl.h
.h
4,606
108
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/libc_override_redefine.h
.h
5,938
132
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2011, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/static_vars.h
.h
5,088
127
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/stacktrace.cc
.cc
11,176
341
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/libc_override.h
.h
4,055
100
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2011, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/profile-handler.h
.h
6,158
143
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- /* Copyright (c) 2009, Google Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/span.cc
.cc
3,227
103
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/raw_printer.h
.h
3,424
91
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/tcmalloc.cc
.cc
78,762
2,202
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/heap-profiler.cc
.cc
22,469
623
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/config_for_unittests.h
.h
3,046
66
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2007, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/stacktrace_powerpc-inl.h
.h
6,706
177
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2007, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/page_heap.h
.h
13,271
359
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/stacktrace_x86-inl.h
.h
14,035
355
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/page_heap_allocator.h
.h
6,216
180
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/pagemap.h
.h
10,147
329
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/sampler.cc
.cc
5,116
134
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/thread_cache.h
.h
16,408
511
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/internal_logging.cc
.cc
5,828
193
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/libc_override_osx.h
.h
12,064
309
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2011, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/stacktrace_powerpc-linux-inl.h
.h
8,803
232
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2007, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/malloc_hook-inl.h
.h
9,799
250
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/packed-cache-inl.h
.h
8,764
217
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2007, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/profiledata.h
.h
6,596
185
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2007, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/linked_list.h
.h
3,390
116
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/system-alloc.h
.h
4,011
93
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/central_freelist.h
.h
8,329
212
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/symbolize.cc
.cc
11,518
299
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2009, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/malloc_hook_mmap_linux.h
.h
8,603
245
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/maybe_threads.h
.h
2,782
62
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/malloc_extension.cc
.cc
12,819
389
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/malloc_hook_mmap_freebsd.h
.h
4,992
136
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2011, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/maybe_threads.cc
.cc
6,189
178
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/debugallocation.cc
.cc
58,647
1,584
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2000, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/getpc.h
.h
8,071
196
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/stack_trace_table.h
.h
2,858
86
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2009, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/memory_region_map.h
.h
17,567
417
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- /* Copyright (c) 2006, Google Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/memfs_malloc.cc
.cc
10,291
280
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2007, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/maybe_emergency_malloc.h
.h
2,219
56
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2014, gperftools Contributors // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/profile-handler.cc
.cc
18,692
585
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2009, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/raw_printer.cc
.cc
2,535
73
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/stacktrace_libgcc-inl.h
.h
3,976
112
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2016, gperftools Contributors // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/addressmap-inl.h
.h
15,984
423
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/stack_trace_table.cc
.cc
3,898
124
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2009, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/profiledata.cc
.cc
9,410
333
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2007, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/stacktrace_generic-inl.h
.h
3,416
85
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/emergency_malloc.cc
.cc
6,434
170
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2014, gperftools Contributors // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/system-alloc.cc
.cc
18,880
556
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/symbolize.h
.h
3,204
85
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2009, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/getenv_safe.h
.h
2,808
64
/* -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- * Copyright (c) 2014, gperftools Contributors * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions o...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/stacktrace_impl_setup-inl.h
.h
3,717
95
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // NOTE: this is NOT to be #include-d normally. It's internal // implementation detail of stacktrace.cc // // Copyright (c) 2014, gperftools Contributors. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // m...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/libc_override_glibc.h
.h
4,218
93
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2011, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/common.h
.h
12,224
310
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/tcmalloc.h
.h
3,011
71
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2007, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/page_heap.cc
.cc
25,233
727
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/fake_stacktrace_scope.cc
.cc
1,816
40
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2014, gperftools Contributors // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/static_vars.cc
.cc
5,714
153
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/internal_logging.h
.h
5,101
145
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/stacktrace_powerpc-darwin-inl.h
.h
6,968
163
// Copyright (c) 2007, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditi...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/sampler.h
.h
9,703
233
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/libc_override_gcc_and_weak.h
.h
9,312
245
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2011, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/emergency_malloc_for_stacktrace.cc
.cc
2,043
49
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2014, gperftools Contributors // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/span.h
.h
6,066
176
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/common.cc
.cc
10,411
292
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/heap-profile-table.cc
.cc
20,866
630
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2006, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/heap-profile-stats.h
.h
3,561
79
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2013, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/stacktrace_libunwind-inl.h
.h
5,127
153
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- // Copyright (c) 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code ...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/third_party/valgrind.h
.h
232,322
3,925
/* -*- c -*- ---------------------------------------------------------------- Notice that the following BSD-style license applies to this one file (valgrind.h) only. The rest of Valgrind is licensed under the terms of the GNU General Public License, version 2, unless otherwise indicated. See the COPYI...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/windows/patch_functions.cc
.cc
47,347
1,098
// Copyright (c) 2007, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of condi...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/windows/port.cc
.cc
9,840
250
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- /* Copyright (c) 2007, Google Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/windows/ia32_opcode_map.cc
.cc
113,909
1,220
/* Copyright (c) 2007, Google Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of condi...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/windows/addr2line-pdb.c
.c
6,445
183
/* Copyright (c) 2008, Google Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditi...
C
3D
mcellteam/mcell
libs/gperftools/src/windows/ia32_modrm_map.cc
.cc
5,125
122
/* Copyright (c) 2007, Google Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of condi...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/windows/preamble_patcher.cc
.cc
29,199
737
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- /* Copyright (c) 2007, Google Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source cod...
Unknown
3D
mcellteam/mcell
libs/gperftools/src/windows/mini_disassembler_types.h
.h
8,505
238
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- /* Copyright (c) 2007, Google Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source cod...
Unknown