HomeSort by: relevance | last modified time | path
    Searched defs:GLOBAL (Results 1 - 25 of 44) sorted by relevancy

1 2

  /src/usr.bin/make/unit-tests/
var-scope-global.mk 1 # $NetBSD: var-scope-global.mk,v 1.1 2022/01/23 16:25:54 rillig Exp $
3 # Tests for global variables, which are the most common variables.
5 # Global variables can be assigned and appended to.
6 GLOBAL= value
7 GLOBAL+= addition
8 .if ${GLOBAL} != "value addition"
12 # Global variables can be removed from their scope.
13 .undef GLOBAL
14 .if defined(GLOBAL)
varmod-loop.mk 122 # undefined. The modifier ':@' uses an ordinary global variable for this,
127 # possibility to undefine a global variable during evaluation.
128 GLOBAL= before-global
129 RESULT:= ${:U${GLOBAL} ${:U:@GLOBAL@@} ${GLOBAL:Uundefined}}
130 .if ${RESULT} != "before-global undefined"
150 # demonstrate this, it is now possible to override its value using a global
152 CMDLINE= global
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/sh/
crt.h 29 #define GLOBAL(X) CONCAT(__USER_LABEL_PREFIX__,X)
lib1funcs.h 26 #define HIDDEN_ALIAS(X,Y) ALIAS (X,Y); .hidden GLOBAL(X)
39 #define GLOBAL(X) GLOBAL0(__USER_LABEL_PREFIX__,X)
41 #define ALIAS(X,Y) .global GLOBAL(X); .set GLOBAL(X),GLOBAL(Y)
  /src/external/bsd/byacc/dist/test/btyacc/
inherit0.tab.h 6 #define GLOBAL 257
btyacc_destroy1.tab.h 6 #define GLOBAL 257
btyacc_destroy2.tab.h 6 #define GLOBAL 257
btyacc_destroy3.tab.h 6 #define GLOBAL 257
err_inherit3.tab.h 6 #define GLOBAL 257
inherit1.tab.h 6 #define GLOBAL 257
inherit2.tab.h 6 #define GLOBAL 257
err_inherit4.tab.h 6 #define GLOBAL 257
  /src/sys/arch/arm/arm/
bus_space_notimpl.S 49 #define GLOBAL(func) .global __L(NAME(func))
57 GLOBAL(func) ; \
  /src/usr.bin/ftp/
progressbar.h 36 #ifndef GLOBAL
37 #define GLOBAL extern
46 GLOBAL FILE *ttyout; /* stdout, or stderr if retrieving to stdout */
48 GLOBAL int progress; /* display transfer progress bar */
49 GLOBAL int ttywidth; /* width of tty */
51 GLOBAL off_t bytes; /* current # of bytes read */
52 GLOBAL off_t filesize; /* size of file being transferred */
53 GLOBAL off_t restart_point; /* offset to restart transfer */
54 GLOBAL char *prefix; /* Text written left of progress bar */
58 GLOBAL int fromatty; /* input is from a terminal *
    [all...]
main.c 124 #define GLOBAL /* force GLOBAL decls in ftp_var.h to be declared */
  /src/external/bsd/nvi/dist/ex/
ex_global.c 36 enum which {GLOBAL, V};
50 cmdp, FL_ISSET(cmdp->iflags, E_C_FORCE) ? V : GLOBAL));
67 * Ex global and v commands.
87 "124|The %s command can't be used as part of a global or v command");
93 * to serve as the global command delimiter.
157 /* The global commands always set the previous context mark. */
184 FL_SET(ecp->agv_flags, cmd == GLOBAL ? AGV_GLOBAL : AGV_V);
188 * For each line... The semantics of global matching are that we first
225 if (cmd == GLOBAL)
  /src/sys/arch/m68k/include/
asm.h 156 * Global variables of whatever sort.
158 #define GLOBAL(x) \
  /src/usr.bin/progress/
progress.c 53 #define GLOBAL /* force GLOBAL decls in progressbar.h to be
197 /* Initialize progressbar.c's global state */
  /src/usr.bin/utoppya/
utoppya.c 50 #define GLOBAL
  /src/external/bsd/libevent/dist/
evthread.c 47 #define GLOBAL
49 #define GLOBAL static
58 GLOBAL int evthread_lock_debugging_enabled_ = 0;
59 GLOBAL struct evthread_lock_callbacks evthread_lock_fns_ = {
62 GLOBAL unsigned long (*evthread_id_fn_)(void) = NULL;
63 GLOBAL struct evthread_condition_callbacks evthread_cond_fns_ = {
  /src/external/bsd/ntp/dist/sntp/libevent/
evthread.c 45 #define GLOBAL
47 #define GLOBAL static
56 GLOBAL int evthread_lock_debugging_enabled_ = 0;
57 GLOBAL struct evthread_lock_callbacks evthread_lock_fns_ = {
60 GLOBAL unsigned long (*evthread_id_fn_)(void) = NULL;
61 GLOBAL struct evthread_condition_callbacks evthread_cond_fns_ = {
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIMemoryLegalizer.cpp 69 GLOBAL = 1u << 0,
76 FLAT = GLOBAL | LDS | SCRATCH,
79 ATOMIC = GLOBAL | LDS | SCRATCH | GDS,
82 ALL = GLOBAL | LDS | SCRATCH | GDS | OTHER,
604 return SIAtomicAddrSpace::GLOBAL;
792 if ((AddrSpace & SIAtomicAddrSpace::GLOBAL) != SIAtomicAddrSpace::NONE) {
808 /// The scratch address space does not need the global memory caches
865 // operations to be visible outside the program in a global order. Do not
866 // request cross address space as only the global address space can be
902 if ((AddrSpace & (SIAtomicAddrSpace::GLOBAL | SIAtomicAddrSpace::SCRATCH)) !
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTX.h 9 // This file contains the entry points for global functions defined in
109 GLOBAL = 1,
  /src/external/gpl3/gcc.old/dist/gcc/cp/
name-lookup.h 161 /* This binding contains duplicate references to a global module
174 /* This slot is part of the global module (a header unit). */
210 namespace, including the global scope. */
229 0) the global one
236 from the current one out to the global one.
268 /* For each level (except not the global one),
331 /* True if SCOPE designates the global scope binding contour. */
414 GLOBAL = 1, // Unqualified lookup, innermost-non-class insertion
  /src/libexec/ftpd/
extern.h 301 #ifndef GLOBAL
302 #define GLOBAL extern
306 GLOBAL struct sockinet ctrl_addr;
307 GLOBAL struct sockinet data_dest;
308 GLOBAL struct sockinet data_source;
309 GLOBAL struct sockinet his_addr;
310 GLOBAL struct sockinet pasv_addr;
311 GLOBAL int connections;
312 GLOBAL struct ftpclass curclass;
313 GLOBAL int ftpd_debug
    [all...]

Completed in 57 milliseconds

1 2