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

1 2

  /src/tests/usr.bin/indent/
fmt_init.c 8 int global = { initializer }; variable in typeref:typename:int
9 int global = { variable in typeref:typename:int
25 int global = {initializer}; variable in typeref:typename:int
26 int global = { variable in typeref:typename:int
opt_ldi.c 12 int global; variable in typeref:typename:int
22 int global; variable in typeref:typename:int
32 int global; variable in typeref:typename:int
42 int global; variable in typeref:typename:int
  /src/tests/usr.bin/xlint/lint1/
msg_188.c 13 struct point global = { variable in typeref:struct:point
  /src/usr.bin/make/unit-tests/
varmod-remember.mk 15 ABC.global:= ${ABC} # is evaluated in the global scope
16 .if ${ABC.global} != "1=A 2=B 3=C"
27 # evaluations in global scope could not overwrite the variable '_' anymore,
28 # as the command line scope takes precedence over the global scope.
31 GHI.global:= ${GHI} # is evaluated in the global scope
32 .if ${GHI.global} != "1=G 2=H 3=I"
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/unit/
tsan_shadow_test.cc 50 static int global; local in function:__tsan::TEST
55 CHECK(IsAppMem((uptr)&global));
59 CHECK(IsShadowMem(MemToShadow((uptr)&global)));
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_debugging.cc 114 } else if (auto global = descr.AsGlobal()) { local in function:__asan_locate_address
115 region_kind = "global";
116 auto &g = global->globals[0];
asan_descriptions.h 161 // Returns true when this descriptions points inside the same global variable
171 // a shadow, global (variable), stack, or heap address.
174 // The proper access_size should be passed for stack, global, and heap
196 GlobalAddressDescription global; member in union:__asan::AddressDescription::AddressDescriptionData::__anon1fc955ce010a
223 return data.global.addr;
240 return data.global.Print(bug_descr);
257 return data.kind == kAddressKindGlobal ? &data.global : nullptr;
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_suppressions.cc 143 const DataInfo &global = loc->global; local in function:__tsan::IsSuppressed
144 if (suppression_ctx->Match(global.name, stype, &s) ||
145 suppression_ctx->Match(global.module, stype, &s)) {
149 return global.start;
tsan_report.cc 31 : type(type), global(), heap_chunk_start(0), heap_chunk_size(0), tid(0),
187 const DataInfo &global = loc->global; local in function:__tsan::PrintLocation
188 if (global.size != 0)
189 Printf(" Location is global '%s' of size %zu at %p (%s+%p)\n\n",
190 global.name, global.size, global.start,
191 StripModuleName(global.module), global.module_offset)
    [all...]
tsan_report.h 77 DataInfo global; member in struct:__tsan::ReportLocation
  /src/tests/lib/libpthread/
h_thread_local_dtor.cpp 58 OrderChecker global{7}; variable in typeref:typename:OrderChecker
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_globals.c 39 struct i915_global *global; local in function:i915_globals_shrink
46 list_for_each_entry(global, &globals, link)
47 global->shrink();
79 void __init i915_global_register(struct i915_global *global)
81 GEM_BUG_ON(!global->shrink);
82 GEM_BUG_ON(!global->exit);
84 list_add_tail(&global->link, &globals);
89 struct i915_global *global, *next; local in function:__i915_globals_cleanup
91 list_for_each_entry_safe_reverse(global, next, &globals, link)
92 global->exit()
    [all...]
i915_buddy.c 24 } global; variable in typeref:struct:i915_global_block
28 kmem_cache_shrink(global.slab_blocks);
33 kmem_cache_destroy(global.slab_blocks);
36 static struct i915_global_block global = { { variable in typeref:struct:i915_global_block
47 global.slab_blocks = KMEM_CACHE(i915_buddy_block, SLAB_HWCACHE_ALIGN);
48 if (!global.slab_blocks)
51 i915_global_register(&global.base);
61 block = kmem_cache_zalloc(global.slab_blocks, GFP_KERNEL);
74 kmem_cache_free(global.slab_blocks, block);
i915_scheduler.c 25 } global; variable in typeref:struct:i915_global_scheduler
181 p = kmem_cache_alloc(global.slab_priorities, GFP_ATOMIC);
220 kmem_cache_free(global.slab_priorities, p);
485 return kmem_cache_alloc(global.slab_dependencies, GFP_KERNEL);
491 kmem_cache_free(global.slab_dependencies, dep);
590 kmem_cache_shrink(global.slab_dependencies);
591 kmem_cache_shrink(global.slab_priorities);
596 kmem_cache_destroy(global.slab_dependencies);
597 kmem_cache_destroy(global.slab_priorities);
600 static struct i915_global_scheduler global = { variable in typeref:struct:i915_global_scheduler
    [all...]
i915_active.c 34 } global; variable in typeref:struct:i915_global_active
211 kmem_cache_free(global.slab_cache, it);
290 prealloc = kmem_cache_alloc(global.slab_cache, GFP_KERNEL);
314 kmem_cache_free(global.slab_cache, prealloc);
346 kmem_cache_free(global.slab_cache, prealloc);
733 node = kmem_cache_alloc(global.slab_cache, GFP_KERNEL);
784 kmem_cache_free(global.slab_cache, node);
998 kmem_cache_shrink(global.slab_cache);
1003 kmem_cache_destroy(global.slab_cache);
1006 static struct i915_global_active global = { variable in typeref:struct:i915_global_active
    [all...]
i915_request.c 61 } global; variable in typeref:struct:i915_global_request
126 kmem_cache_free(global.slab_requests, rq);
143 kmem_cache_free(global.slab_execute_cbs, cb);
326 cb = kmem_cache_alloc(global.slab_execute_cbs, gfp);
347 kmem_cache_free(global.slab_execute_cbs, cb);
580 rq = kmem_cache_alloc(global.slab_requests,
593 return kmem_cache_alloc(global.slab_requests, gfp);
667 rq = kmem_cache_alloc(global.slab_requests,
757 kmem_cache_free(global.slab_requests, rq);
1676 kmem_cache_shrink(global.slab_dependencies)
1688 static struct i915_global_request global = { { variable in typeref:struct:i915_global_request
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/mmu/
priv.h 41 bool global; member in struct:nvkm_mmu_func::__anon502b80780308
  /src/sys/external/bsd/drm2/dist/drm/i915/gem/
i915_gem_object.c 48 } global; variable in typeref:struct:i915_global_object
52 return kmem_cache_zalloc(global.slab_objects, GFP_KERNEL);
57 return kmem_cache_free(global.slab_objects, obj);
406 kmem_cache_shrink(global.slab_objects);
411 kmem_cache_destroy(global.slab_objects);
414 static struct i915_global_object global = { { variable in typeref:struct:i915_global_object
421 global.slab_objects =
423 if (!global.slab_objects)
426 i915_global_register(&global.base);
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
intel_context.c 28 } global; variable in typeref:struct:i915_global_context
32 return kmem_cache_zalloc(global.slab_ce, GFP_KERNEL);
37 kmem_cache_free(global.slab_ce, ce);
313 kmem_cache_shrink(global.slab_ce);
318 kmem_cache_destroy(global.slab_ce);
321 static struct i915_global_context global = { { variable in typeref:struct:i915_global_context
328 global.slab_ce = KMEM_CACHE(intel_context, SLAB_HWCACHE_ALIGN);
329 if (!global.slab_ce)
332 i915_global_register(&global.base);
selftest_hangcheck.c 403 struct i915_gpu_error *global = &gt->i915->gpu_error; local in function:igt_reset_nop
412 reset_count = i915_reset_count(global);
449 if (i915_reset_count(global) != reset_count + ++count) {
469 struct i915_gpu_error *global = &gt->i915->gpu_error; local in function:igt_reset_nop_engine
489 reset_count = i915_reset_count(global);
490 reset_engine_count = i915_reset_engine_count(global, engine);
522 if (i915_reset_count(global) != reset_count) {
528 if (i915_reset_engine_count(global, engine) !=
553 struct i915_gpu_error *global = &gt->i915->gpu_error; local in function:__igt_reset_engine
585 reset_count = i915_reset_count(global);
771 struct i915_gpu_error *global = &gt->i915->gpu_error; local in function:__igt_reset_engines
1030 struct i915_gpu_error *global = &gt->i915->gpu_error; local in function:igt_reset_wait
1359 struct i915_gpu_error *global = &gt->i915->gpu_error; local in function:igt_reset_queue
1502 struct i915_gpu_error *global = &gt->i915->gpu_error; local in function:igt_handle_error
    [all...]
  /src/tests/lib/libc/gen/
t_arc4random.c 90 * If we couldn't get the thread-local state, get the global
102 * Same as arc4random_buf, but force use of the global state.
133 * Verify the PRNG is the global one, not the thread-local one,
146 * global state.
176 * By this point, the global state must be initialized -- if
182 * Get the PRNG, global or local. By this point, the PRNG
224 struct arc4random_prng *local, *global = &arc4random_global.prng; local in function:ATF_TC_BODY
230 * Get a sample from the global state to make sure the global
235 ATF_CHECK(!iszero(&global->arc4_prng, sizeof(global->arc4_prng)))
393 struct arc4random_prng *local, *global = &arc4random_global.prng; local in function:ATF_TC_BODY
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/randombytes/salsa20/
randombytes_salsa20_random.c 99 static Salsa20RandomGlobal global = { variable in typeref:typename:Salsa20RandomGlobal
151 global.rdrand_available = sodium_runtime_has_rdrand();
295 global.rdrand_available = sodium_runtime_has_rdrand();
307 global.getrandom_available = 1;
311 global.getrandom_available = 0;
315 if ((global.random_data_source_fd =
337 if (global.initialized == 0) {
339 global.initialized = 1;
342 global.pid = getpid();
350 if (global.getrandom_available != 0)
    [all...]
  /src/sys/arch/xen/xen/
xen_clock.c 118 "uint64_t"/*global*/);
153 * CPU, for a global monotonic view of the Xen system time clock.
502 * Return a global monotonic view of the system time in
511 uint64_t local, global, skew, result; local in function:xen_global_systime_ns
515 * not precede the latest global timecount witnessed so far by
526 global = xen_global_systime_ns_stamp;
527 if (__predict_false(local + skew < global + 1)) {
529 local, skew, global);
533 " local=%"PRIu64" skew=%"PRIu64" global=%"PRIu64","
535 local, skew, global, global + 1 - (local + skew))
    [all...]
  /src/bin/csh/
lex.c 742 int global; local in function:getsub
746 global = 0;
749 global |= (c == 'g') ? 1 : 2;
752 if (((c =='g') && !(global & 1)) || ((c == 'a') && !(global & 2))) {
753 global |= (c == 'g') ? 1 : 2;
763 global |= 1;
859 en = dosub(sc, en, global);
867 dosub(int sc, struct wordent *en, int global)
891 if ((global & 1) || didsub == 0)
    [all...]
  /src/sys/arch/hppa/stand/xxboot/
start.S 73 .export $global$,data
74 $global$:
91 addil L%_end-$global$,%r27;%r1
92 ldo R%_end-$global$(%r1),%r1
101 ldo str_startup-$global$(%r27),%arg0
114 ldo top-$global$+part1sz(%r27),%r19
132 ldo top-$global$+part1sz(%r27),%r1 ; part 2 address
145 addil L%_edata-$global$,%r27;%r1
146 ldo R%_edata-$global$(%r1),%r1
152 addil L%labelsector-$global$,%r27;%r
    [all...]

Completed in 27 milliseconds

1 2