view release on metacpan or search on metacpan
lib/DOCSIS/ConfigFile/mibs/RMON2-MIB view on Meta::CPAN
it is associated with will discard the packet if the packet
doesn't match this protocol directory entry."
DEFVAL { 0 }
::= { filter2Entry 2 }
-- Conformance Macros
rmon2MIBCompliances OBJECT IDENTIFIER ::= { rmonConformance 1 }
rmon2MIBGroups OBJECT IDENTIFIER ::= { rmonConformance 2 }
rmon2MIBCompliance MODULE-COMPLIANCE
view all matches for this distribution
view release on metacpan or search on metacpan
CAB/Analyzer.pm view on Meta::CPAN
=back
=cut
##----------------------------------------------------------------
## DESCRIPTION: DTA::CAB::Analyzer: Methods: Analysis: Closure Utilities: Macros
=pod
=head3 Methods: Analysis: Closure Utilities: Macros
In order to facilitate development of analyzer-local accessor code in string form,
the following "macros" are defined as exportable functions. Their arguments and
return values are B<strings> suitable for inclusion in acccessor macros. These
macros are exported by the tags ':access', ':child', and ':all'.
view all matches for this distribution
view release on metacpan or search on metacpan
share/assets/dash_core_components/async~markdown.js.map view on Meta::CPAN
{"version":3,"sources":["webpack:///./node_modules/is-whitespace-character/index.js","webpack:///./node_modules/xtend/immutable.js","webpack:///./node_modules/trim/index.js","webpack:///./node_modules/is-decimal/index.js","webpack:///./node_modules/u...
view all matches for this distribution
view release on metacpan or search on metacpan
databb-boost/boost/config/auto_link.hpp view on Meta::CPAN
#ifndef BOOST_VERSION_HPP
# include <boost/version.hpp>
#endif
#ifndef BOOST_LIB_NAME
# error "Macro BOOST_LIB_NAME not set (internal error)"
#endif
//
// error check:
//
view all matches for this distribution
view release on metacpan or search on metacpan
/* ****************************************
* Compiler-specific Functions and Macros
******************************************/
#define XXH_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
#ifdef __has_builtin
# define XXH_HAS_BUILTIN(x) __has_builtin(x)
view all matches for this distribution
view release on metacpan or search on metacpan
buf_generic.h view on Meta::CPAN
/*
* buf_generic.h -- Macro-template for shared-memory typed buffers.
*
* Before including, define:
* BUF_PREFIX -- function prefix (e.g., buf_i64)
* BUF_ELEM_TYPE -- C element type (e.g., int64_t)
* BUF_VARIANT_ID -- unique integer for header validation
view all matches for this distribution
view release on metacpan or search on metacpan
/* ****************************************
* Compiler-specific Functions and Macros
******************************************/
#define XXH_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
#ifdef __has_builtin
# define XXH_HAS_BUILTIN(x) __has_builtin(x)
view all matches for this distribution
view release on metacpan or search on metacpan
/* ****************************************
* Compiler-specific Functions and Macros
******************************************/
#define XXH_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
#ifdef __has_builtin
# define XXH_HAS_BUILTIN(x) __has_builtin(x)
view all matches for this distribution
view release on metacpan or search on metacpan
/* ****************************************
* Compiler-specific Functions and Macros
******************************************/
#define XXH_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
#ifdef __has_builtin
# define XXH_HAS_BUILTIN(x) __has_builtin(x)
view all matches for this distribution
view release on metacpan or search on metacpan
shm_generic.h view on Meta::CPAN
/*
* shm_generic.h -- Macro-template for shared-memory hash maps.
*
* Before including, define:
* SHM_PREFIX -- function prefix (e.g., shm_ii)
* SHM_NODE_TYPE -- node struct name
* SHM_VARIANT_ID -- unique integer for header validation
view all matches for this distribution
view release on metacpan or search on metacpan
**Layer structure:**
- `lib/Data/HashMap.pm` â Main module, loads XS via XSLoader, POD documentation
- `lib/Data/HashMap/{I16,I16A,I16S,I32,I32A,I32S,IA,II,IS,SA,SI16,SI32,SI,SS}.pm` â Variant modules, enable keywords via `$^H` hints
- `HashMap.xs` â XS bindings + XS::Parse::Keyword integration for all 14 variants
- `hashmap_generic.h` â Macro-template C implementation (included 14 times with different defines)
- `hashmap_{i16,i16a,i16s,i32,i32a,i32s,ia,ii,is,sa,si16,si32,si,ss}.h` â Variant instantiation headers
- `typemap` â XS type mappings
**Key implementation details:**
- Open addressing with linear probing, xxHash-based hash functions
view all matches for this distribution
view release on metacpan or search on metacpan
/* ****************************************
* Compiler-specific Functions and Macros
******************************************/
#define XXH_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
#ifdef __has_builtin
# define XXH_HAS_BUILTIN(x) __has_builtin(x)
view all matches for this distribution
view release on metacpan or search on metacpan
/* ****************************************
* Compiler-specific Functions and Macros
******************************************/
#define XXH_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
#ifdef __has_builtin
# define XXH_HAS_BUILTIN(x) __has_builtin(x)
view all matches for this distribution
view release on metacpan or search on metacpan
msgpack-3.3.0/Doxyfile view on Meta::CPAN
ENABLE_PREPROCESSING = YES
# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
# names in the source code. If set to NO (the default) only conditional
# compilation will be performed. Macro expansion can be done in a controlled
# way by setting EXPAND_ONLY_PREDEF to YES.
MACRO_EXPANSION = NO
# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
view all matches for this distribution
view release on metacpan or search on metacpan
include/msgpack/predef/make.h view on Meta::CPAN
hexadecimal digits, and "`MSGPACK_PREDEF_MAKE_10`" for decimal digits.
* The format of the vendor version number. Where "`V`" indicates the version digits,
"`R`" indicates the revision digits, "`P`" indicates the patch digits, and "`0`"
indicates an ignored digit.
Macros are:
*/
/*` `MSGPACK_PREDEF_MAKE_0X_VRP(V)` */
#define MSGPACK_PREDEF_MAKE_0X_VRP(V) MSGPACK_VERSION_NUMBER((V&0xF00)>>8,(V&0xF0)>>4,(V&0xF))
/*` `MSGPACK_PREDEF_MAKE_0X_VVRP(V)` */
#define MSGPACK_PREDEF_MAKE_0X_VVRP(V) MSGPACK_VERSION_NUMBER((V&0xFF00)>>8,(V&0xF0)>>4,(V&0xF))
view all matches for this distribution
view release on metacpan or search on metacpan
/* ****************************************
* Compiler-specific Functions and Macros
******************************************/
#define XXH_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
#ifdef __has_builtin
# define XXH_HAS_BUILTIN(x) __has_builtin(x)
view all matches for this distribution
view release on metacpan or search on metacpan
/* ****************************************
* Compiler-specific Functions and Macros
******************************************/
#define XXH_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
#ifdef __has_builtin
# define XXH_HAS_BUILTIN(x) __has_builtin(x)
view all matches for this distribution
view release on metacpan or search on metacpan
share/Last.txt view on Meta::CPAN
Macqueen
Macrae
Macreno
Macri
Macrina
Macrostie
Macrowski
Macrum
Macugay
Macumber
Macura
Macurdy
view all matches for this distribution
view release on metacpan or search on metacpan
/* ****************************************
* Compiler-specific Functions and Macros
******************************************/
#define XXH_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
#ifdef __has_builtin
# define XXH_HAS_BUILTIN(x) __has_builtin(x)
view all matches for this distribution
view release on metacpan or search on metacpan
/* ****************************************
* Compiler-specific Functions and Macros
******************************************/
#define XXH_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
#ifdef __has_builtin
# define XXH_HAS_BUILTIN(x) __has_builtin(x)
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Data/Type/Collection/Perl6.pm view on Meta::CPAN
Code Base class for all executable objects
Routine Base class for all nameable executable objects
Sub Perl subroutine
Method Perl method
Submethod Perl subroutine acting like a method
Macro Perl compile-time subroutine
Rule Perl pattern
Block Base class for all unnameable executable objects
Bare Basic Perl block
Parametric Basic Perl block with placeholder parameters
Package Perl 5 compatible namespace
view all matches for this distribution
view release on metacpan or search on metacpan
lib/DateTime/Calendar/Pataphysical.pm view on Meta::CPAN
v Réprobation du Travail
4 Esquive de St Léonard (de Vinci), illusionniste
4 St Ãquivoque, sans-culotte
3 Adoration du Pal
4 Déploration de St Achras, éleveur de Polyèdres
4 St Macrotatoure, caudataire
v Canotage
4 Occultation de St Gauguin, océanide
4 St Ti Belot, séide
4 Occultation de Sa Magnificence le Dr Sandomir
2 Sts Palotins des Phynances
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Decl.pm view on Meta::CPAN
sub mylocation { '/'; }
=head2 describe([$use])
Returns a reconstructed set of source code used to compile this present C<Decl> object. If it was assembled
in parts, you still get the whole thing back. Macro results are not included in this dump (they're presumed to be the result
of macros in the tree itself, so they should be regenerated the next time anyway).
If you specify a true value for $use, the dump will include a "use" statement at the start in order to make the result an
executable Perl script.
The dump is always in filter format (if you built it with -nofilter) and contains C<Decl>'s best guess of the
view all matches for this distribution
view release on metacpan or search on metacpan
do_n_dialog (sub { $::CONN->send ("move $targ $self->{tag} $_[0]") })
}
]
)
),
["bind <i>apply $shortname</i> to a key" => sub { DC::Macro::quick_macro ["apply $self->{name}"] }],
);
DC::UI::Menu->new (items => \@menu_items)->popup ($ev);
}
view all matches for this distribution
view release on metacpan or search on metacpan
parts/apicheck.pl view on Meta::CPAN
$stack .= " static $no_const_n $p$v$d;\n";
}
}
# Declare thread context for functions and macros that might need it.
# (Macros often fail to say they don't need it.)
unless ($Tflag) {
$stack = " dTHX;\n$stack"; # Harmless to declare even if not needed
$aTHX = @arg ? 'aTHX_ ' : 'aTHX';
}
view all matches for this distribution
view release on metacpan or search on metacpan
t/data/simple-lib/lib/Win32/Word/Writer.pm view on Meta::CPAN
Start Word and press Alt-F11 to bring up the VBA window. There is an
Object Browser in the toolbar. Select an object, method or property
and press F1 to bring up the help.
A good way to figure out how to do something is to record a Macro and
then bring up the VBA window and inspect the code written by the Macro
Recorder.
=head1 DESIGN ISSUES
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Devel/Trepan.pm view on Meta::CPAN
L<Loading or reloading Debugger or Perlish things (load)|Devel::Trepan::CmdProcessor::Command::Load>
=item *
L<Define a macro (macro)|Devel::Trepan::CmdProcessor::Command::Macro>
=item *
L<Allow remote connections (server)|Devel::Trepan::CmdProcessor::Command::Server>
view all matches for this distribution