Searched refs:guard (Results 1 - 25 of 37) sorted by relevance

12

/freebsd-10-stable/sys/kern/
H A Dstack_protector.c25 long guard[__arraycount(__stack_chk_guard)]; local
27 arc4rand(guard, sizeof(guard), 0);
28 for (i = 0; i < __arraycount(guard); i++)
29 __stack_chk_guard[i] = guard[i];
/freebsd-10-stable/contrib/libcxxrt/
H A Dguard.cc28 * guard.cc: Functions for thread-safe static initialisation.
67 * The least significant bit of the guard variable indicates that the object
76 #define LOCK_PART(guard) (guard)
77 #define INIT_PART(guard) (guard)
88 #define LOCK_PART(guard) (guard)
89 #define INIT_PART(guard) (guard)
[all...]
/freebsd-10-stable/crypto/heimdal/lib/wind/
H A Dgenerate.py61 """Return a name to be used as ifdef guard"""
67 self.guard = self.makeGuard()
68 self.file.write('#ifndef ' + self.guard + '\n')
69 self.file.write('#define ' + self.guard + ' 1\n')
73 self.file.write('#endif /* ' + self.guard + ' */\n')
/freebsd-10-stable/contrib/ntp/sntp/unity/
H A Dunity_fixture.c175 char guard[sizeof(size_t)]; member in struct:GuardBytes
184 Guard* guard; local
195 guard = (Guard*)malloc(size + sizeof(Guard) + 4);
196 guard->size = size;
197 mem = (char*)&(guard[1]);
205 Guard* guard = (Guard*)mem; local
207 guard--;
209 return strcmp(&memAsChar[guard->size], end) != 0;
214 Guard* guard = (Guard*)mem; local
215 guard
240 Guard* guard = (Guard*)oldMem; local
[all...]
/freebsd-10-stable/contrib/gcc/config/
H A Dvxlib.c62 __gthread_once (__gthread_once_t *guard, void (*func)(void)) argument
64 if (guard->done)
70 while (!vxTas ((void *)&guard->busy))
76 if (!guard->done)
79 guard->done = 1;
85 guard->busy = 0;
H A Dfp-bit.c1401 fractype guard = in.fraction.ll & (((fractype)1 << -shift) - 1);
1403 in.fraction.ll |= (guard != 0);
1589 /* We set the lowest guard bit in SFFRAC if we discarded any non
1645 /* We set the lowest guard bit in SFFRAC if we discarded any non
1667 /* We set the lowest guard bit in SFFRAC if we discarded any non
/freebsd-10-stable/lib/libcxxrt/
H A DMakefile20 guard.cc
/freebsd-10-stable/contrib/ntp/sntp/libevent/build-aux/
H A Dylwrap40 # guard FILE
42 # The CPP macro used to guard inclusion of FILE.
43 guard () function
132 # guard in its implementation file.
152 sed_fix_header_guards="${sed_fix_header_guards}s|"`guard "$from"`"|"`guard "$to"`"|g;"
/freebsd-10-stable/contrib/gcc/cp/
H A Ddecl2.c2240 /* Returns the initialization guard variable for the variable DECL,
2247 tree guard;
2250 guard = IDENTIFIER_GLOBAL_VALUE (sname);
2251 if (! guard)
2258 guard = build_decl (VAR_DECL, sname, guard_type);
2260 /* The guard should have the same linkage as what it guards. */
2261 TREE_PUBLIC (guard) = TREE_PUBLIC (decl);
2262 TREE_STATIC (guard) = TREE_STATIC (decl);
2263 DECL_COMMON (guard) = DECL_COMMON (decl);
2264 DECL_ONE_ONLY (guard)
2242 tree guard; local
2275 get_guard_bits(tree guard) argument
2297 get_guard_cond(tree guard) argument
2323 set_guard(tree guard) argument
2615 tree guard; local
[all...]
/freebsd-10-stable/usr.bin/rpcgen/
H A Drpc_main.c451 char *guard, *tmp, *stopat; local
455 guard = xstrdup(filename);
456 stopat = strrchr(guard, '.');
462 for (tmp = guard; *tmp != '\000'; ++tmp) {
467 else if (tmp == guard)
482 if (*guard == '_') {
483 for (tmp = guard; *tmp == '_'; ++tmp)
485 strcpy(guard, tmp);
487 guard = extendfile(guard, "_H_RPCGE
502 const char *guard; local
[all...]
/freebsd-10-stable/gnu/lib/libsupc++/
H A DMakefile17 eh_type.cc eh_unex_handler.cc guard.cc new_handler.cc new_op.cc \
/freebsd-10-stable/contrib/libstdc++/libsupc++/
H A DMakefile.am61 guard.cc \
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp1329 // are disabled, we can just let the guard variable be of type i8.
1342 // Create the guard variable if we don't already have it (as we
1344 llvm::GlobalVariable *guard = CGM.getStaticLocalDeclGuardAddress(&D); local
1345 if (!guard) {
1346 // Mangle the name for the guard.
1354 // Create the guard variable with a zero-initializer.
1356 guard = new llvm::GlobalVariable(CGM.getModule(), guardTy,
1360 guard->setVisibility(var->getVisibility());
1361 // If the variable is thread-local, so is its guard variable.
1362 guard
1452 CGF.EmitNounwindRuntimeCall(getGuardReleaseFn(CGM, guardPtrTy), guard); local
1454 Builder.CreateStore(llvm::ConstantInt::get(guardTy, 1), guard); local
[all...]
/freebsd-10-stable/sys/gnu/dts/arm/
H A Dat91sam9261ek.dts57 atmel,guard-time = <1>;
H A Dat91sam9263ek.dts115 atmel,guard-time = <1>;
H A Dat91sam9rlek.dts52 atmel,guard-time = <1>;
H A Dat91sam9m10g45ek.dts187 atmel,guard-time = <9>;
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/JIT/
H A DJIT.cpp101 MutexGuard guard(Lock);
105 MutexGuard guard(Lock);
109 MutexGuard guard(Lock);
H A DJITEmitter.cpp244 MutexGuard guard(Lock);
249 MutexGuard guard(Lock);
254 MutexGuard guard(Lock);
267 MutexGuard guard(Lock);
/freebsd-10-stable/lib/libc++/
H A DMakefile51 guard.cc
/freebsd-10-stable/contrib/ntp/sntp/libevent/
H A Devent_rpcgen.py1540 # reduce the chance of a collision between guard macros.
1544 guard = self.GuardName(name)
1551 name, guard, guard)
1566 guard = self.GuardName(name)
1567 return '#endif /* %s */' % guard
/freebsd-10-stable/contrib/gcc/
H A Dcfgexpand.c945 /* Create a decl for the guard at the top of the stack frame. */
950 tree guard = build_decl (VAR_DECL, NULL, ptr_type_node); local
951 TREE_THIS_VOLATILE (guard) = 1;
952 TREE_USED (guard) = 1;
953 expand_one_stack_var (guard);
954 cfun->stack_protect_guard = guard;
/freebsd-10-stable/include/rpcsvc/
H A Dnfs_prot.x547 sattrguard3 guard;
/freebsd-10-stable/contrib/sqlite3/
H A DMakefile.msc861 LTLINKOPTS = $(LTLINKOPTS) /guard:cf "/LIBPATH:$(UCRTLIBPATH)"
/freebsd-10-stable/contrib/bmake/mk/
H A Dmeta.stage.mk19 # the guard target is defined later

Completed in 314 milliseconds

12