Searched refs:seen (Results 1 - 25 of 88) sorted by relevance

1234

/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/
H A Dtst.providers.ksh52 int seen[string];
57 /err == 0 && progenyof(\$pid) && !seen["provider"]/ \
68 seen["provider"]++; \
80 /err == 0 && !seen["provider"]/ \
89 printf("saw %d probes from provider\n", seen["provider"]); \
/freebsd-current/sys/compat/linux/
H A Dlinux_util.h133 static int seen = 0; \
135 if (seen == 0 && linux_debug >= 2) { \
139 seen = 1; \
145 static int seen = 0; \
147 if (seen == 0) { \
151 seen = 1; \
157 static int seen = 0; \
159 if (seen == 0) { \
163 seen = 1; \
169 static int seen
[all...]
/freebsd-current/sys/netgraph/
H A Dng_lmi.h69 u_char seen[NGM_LMI_STAT_ARYSIZE]; /* DLCIs ever seen */ member in struct:nglmistat
/freebsd-current/contrib/lib9p/pytest/
H A Dpfod.py135 seen = set()
142 or name in seen):
144 seen.add(name)
157 seen = set()
165 if name in seen:
167 seen.add(name)
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/
H A Dtst.reeval.ksh81 seen = 1;
87 exit(seen ? 0 : 2);
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/nfs/
H A Dtst.call3.d73 /seen[probename] == 0/
76 seen[probename] = 1;
77 printf("%d ops seen, latest op is %s\n", numberseen, probename);
89 printf("%d nfsv3 ops seen; should be 22\n", numberseen);
/freebsd-current/contrib/libevent/test/
H A Dregress_testutils.h36 int seen; member in struct:regress_dns_server_table
/freebsd-current/contrib/ntp/sntp/libevent/test/
H A Dregress_testutils.h36 int seen; member in struct:regress_dns_server_table
/freebsd-current/sys/kern/
H A Dsubr_acl_nfs4.c720 mode_t old_mode = *_mode, mode = 0, seen = 0; local
744 ((seen & S_IRUSR) == 0)) {
745 seen |= S_IRUSR;
750 ((seen & S_IWUSR) == 0)) {
751 seen |= S_IWUSR;
756 ((seen & S_IXUSR) == 0)) {
757 seen |= S_IXUSR;
763 ((seen & S_IRGRP) == 0)) {
764 seen |= S_IRGRP;
769 ((seen
[all...]
/freebsd-current/contrib/ofed/opensm/include/opensm/
H A Dosm_ucast_lash.h60 int seen; member in struct:_cdg_vertex
/freebsd-current/tools/test/stress2/misc/
H A Dposix_fadvise2.sh29 # Looping thread seen:
69 /* Arguments from syscall4.sh test as seen in kostik850.txt */
/freebsd-current/contrib/googletest/googlemock/src/
H A Dgmock-matchers.cc133 // 'seen' is used for path finding { 0: unseen, 1: seen }.
134 ::std::vector<char> seen; local
152 // 'seen' initialized to 'graph_->RhsSize()' copies of 0.
153 seen.assign(graph_->RhsSize(), 0);
154 TryAugment(ilhs, &seen);
172 // flow was added to the network. The 'seen' vector elements correspond
184 bool TryAugment(size_t ilhs, ::std::vector<char>* seen) { argument
186 if ((*seen)[irhs]) continue;
189 (*seen)[irh
[all...]
/freebsd-current/contrib/bmake/mk/
H A Dmeta2deps.sh345 seen="$rdir,$dir"
347 *) seen=$dir;;
378 seenit="$seenit,$seen"
390 # just because we've seen the dir before.
398 seenit="$seenit,$seen"
401 seenit="$seenit,$seen"
/freebsd-current/share/mk/
H A Dmeta2deps.sh345 seen="$rdir,$dir"
347 *) seen=$dir;;
378 seenit="$seenit,$seen"
390 # just because we've seen the dir before.
398 seenit="$seenit,$seen"
401 seenit="$seenit,$seen"
/freebsd-current/crypto/openssl/test/recipes/
H A Dtconversion.pl135 my %seen = ();
136 grep { not $seen{$_}++ } @_;
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DFloat2Int.h40 void seen(Instruction *I, ConstantRange R);
/freebsd-current/sys/dev/random/fenestrasX/
H A Dfx_pool.c379 unsigned rem, seen; local
382 seen = fxrng_reseed_seen[src];
383 if (seen == FXENT_HI_SRC_POOL0_BYTES)
386 rem = FXENT_HI_SRC_POOL0_BYTES - seen;
389 fxrng_reseed_seen[src] = seen + rem;
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DFloat2Int.cpp39 // If a non-mappable instruction is seen, this entire def-use graph is marked
116 void Float2IntPass::seen(Instruction *I, ConstantRange R) { function in class:Float2IntPass
166 seen(I, badRange());
176 seen(I, validateRange(Input.castOp(CastOp, MaxIntegerBW+1)));
187 seen(I, unknownRange());
199 seen(I, badRange());
212 assert(OpIt != SeenInsts.end() && "def not seen before use!");
294 // Walk forwards down the list of seen instructions, so we visit defs before
307 seen(I, *Range);
332 // We need to ensure I has no users that have not been seen
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIE.cpp37 // Infinite recursion is prevented by maintaining a list of seen DIEs.
377 GetDeclContextImpl(llvm::SmallSet<lldb::user_id_t, 4> &seen, DWARFDIE die) { argument
380 if (!die || !seen.insert(die.GetID()).second)
385 return GetDeclContextImpl(seen, spec);
388 context = GetDeclContextImpl(seen, die.GetParent());
429 llvm::SmallSet<lldb::user_id_t, 4> seen; local
430 return GetDeclContextImpl(seen, *this);
/freebsd-current/sys/contrib/openzfs/module/os/freebsd/zfs/
H A Dzfs_acl.c889 mode_t seen = 0; local
915 (!(seen & S_IRUSR))) {
916 seen |= S_IRUSR;
922 (!(seen & S_IWUSR))) {
923 seen |= S_IWUSR;
929 (!(seen & S_IXUSR))) {
930 seen |= S_IXUSR;
938 (!(seen & S_IRGRP))) {
939 seen |= S_IRGRP;
945 (!(seen
[all...]
/freebsd-current/tools/test/stress2/tools/
H A Dfail.sh69 rename11.sh 20170329 Too many links seen with SU.
/freebsd-current/sys/contrib/openzfs/module/os/linux/zfs/
H A Dzfs_acl.c907 mode_t seen = 0; local
933 (!(seen & S_IRUSR))) {
934 seen |= S_IRUSR;
940 (!(seen & S_IWUSR))) {
941 seen |= S_IWUSR;
947 (!(seen & S_IXUSR))) {
948 seen |= S_IXUSR;
956 (!(seen & S_IRGRP))) {
957 seen |= S_IRGRP;
963 (!(seen
[all...]
/freebsd-current/usr.sbin/config/
H A Dmkoptions.cc144 int seen; local
190 seen = 0;
210 seen++;
252 if (value && !seen) {
/freebsd-current/sys/contrib/openzfs/cmd/zstream/
H A Dzstream_recompress.c142 boolean_t seen = B_FALSE; local
161 seen = B_TRUE;
187 VERIFY3B(seen, ==, B_TRUE);
/freebsd-current/sbin/routed/rtquery/
H A Drtquery.c352 struct seen { struct
353 struct seen *next;
355 } *seen, *sp; local
401 seen = NULL;
429 for (sp = seen; sp != NULL; sp = sp->next) {
441 sp->next = seen;
442 seen = sp;

Completed in 196 milliseconds

1234