Home
last modified time | relevance | path

Searched refs:this (Results 1 – 25 of 4012) sorted by relevance

12345678910>>...161

/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/
H A Dtst.neglquant.d70 this->i = 1;
71 this->val = (1 << 63) - 1;
73 @["f-market"] = lquantize(this->i, 0, 10, 1, this->val);
74 this->i++;
75 this->val = ((1 << 63) - 1) / this->i;
77 @["f-market"] = lquantize(this->i, 0, 10, 1, this->val);
78 this->i++;
79 this->val = ((1 << 63) - 1) / this->i;
81 @["f-market"] = lquantize(this->i, 0, 10, 1, this->val);
82 this->i++;
[all …]
H A Dtst.negquant.d70 this->i = 1;
71 this->val = (1 << 63) - 1;
73 @["f-market"] = quantize(this->i, this->val);
74 this->i <<= 1;
75 this->val >>= 1;
77 @["f-market"] = quantize(this->i, this->val);
78 this->i <<= 1;
79 this->val >>= 1;
81 @["f-market"] = quantize(this->i, this->val);
82 this->i <<= 1;
[all …]
/freebsd/cddl/usr.sbin/dwatch/libexec/
H A Dvop_rename23 this->fvp = args[1] ? args[1]->a_fdvp : NULL;
24 this->fncp = this->fvp != NULL ?
25 this->fvp->v_cache_dst.tqh_first : 0;
26 this->ffi_name = args[1] ? (
30 this->fmount = this->fvp != NULL ?
31 this->fvp->v_mount : NULL; /* ptr to vfs we are in */
32 this->ffi_fs = this->fmount != NULL ?
33 stringof(this->fmount->mnt_stat.f_fstypename) : "";
34 this->ffi_mount = this->fmount != NULL ?
35 stringof(this->fmount->mnt_stat.f_mntonname) : "";
[all …]
H A Dvop_symlink23 this->vp = (struct vnode *)arg0;
24 this->ncp = this->vp != NULL ?
25 this->vp->v_cache_dst.tqh_first : 0;
26 this->target = args[1] ? args[1]->a_target : "";
27 this->fi_name = args[1] ? (
31 this->mount = this->vp != NULL ?
32 this->vp->v_mount : NULL; /* ptr to vfs we are in */
33 this->fi_fs = this->mount != NULL ?
34 stringof(this->mount->mnt_stat.f_fstypename) : "";
35 this->fi_mount = this->mount != NULL ?
[all …]
H A Dvop_create23 this->vp = (struct vnode *)arg0;
24 this->ncp = this->vp != NULL ?
25 this->vp->v_cache_dst.tqh_first : 0;
26 this->fi_name = args[1] ? (
30 this->mount = this->vp != NULL ?
31 this->vp->v_mount : NULL; /* ptr to vfs we are in */
32 this->fi_fs = this->mount != NULL ?
33 stringof(this->mount->mnt_stat.f_fstypename) : "";
34 this->fi_mount = this->mount != NULL ?
35 stringof(this->mount->mnt_stat.f_mntonname) : "";
[all …]
H A Dio21 [ "$CUSTOM_TEST" ] || EVENT_TEST='this->devinfo.dev_name != ""'
26 this bufinfo_t bufinfo;
27 this devinfo_t devinfo;
28 this int b_flags;
29 this long bio_length;
30 this string bio_cmd;
31 this string bio_flags;
32 this string device_entry;
33 this string device_if;
34 this string device_type;
[all …]
H A Dvop_readdir23 this->vp = (struct vnode *)arg0;
24 this->ncp = this->vp != NULL ?
25 this->vp->v_cache_dst.tqh_first : 0;
26 this->mount = this->vp != NULL ?
27 this->vp->v_mount : NULL; /* ptr to vfs we are in */
28 this->fi_fs = this->mount != NULL ?
29 stringof(this->mount->mnt_stat.f_fstypename) : "";
30 this->fi_mount = this->mount != NULL ?
31 stringof(this->mount->mnt_stat.f_mntonname) : "";
32 this->d_name = args[0]->v_cache_dd != NULL ?
[all …]
H A Dudp22 this string flow;
23 this string local;
24 this string remote;
25 this u_char local6;
26 this u_char recv;
27 this u_char remote6;
28 this uint16_t length;
29 this uint16_t lport;
30 this uint16_t rport;
39 this->recv = probename == "receive" ? 1 : 0;
[all …]
H A Dudplite22 this string flow;
23 this string local;
24 this string remote;
25 this u_char local6;
26 this u_char recv;
27 this u_char remote6;
28 this uint16_t coverage;
29 this uint16_t lport;
30 this uint16_t rport;
39 this->recv = probename == "receive" ? 1 : 0;
[all …]
H A Dtcp60 this int32_t from_state;
61 this int32_t to_state;
62 this string details;
63 this string flow;
64 this string local;
65 this string remote;
66 this u_char local6;
67 this u_char remote6;
68 this u_char slocal;
69 this uint16_t lport;
[all …]
H A Dip22 this string flow;
23 this string if_name;
24 this string local;
25 this string remote;
26 this u_char recv;
27 this uint32_t length;
36 this->recv = probename == "receive" ? 1 : 0;
37 this->flow = this->recv ? "<-" : "->";
42 this->length = (uint32_t)args[2]->ip_plength;
43 this->local = this->recv ? args[2]->ip_daddr : args[2]->ip_saddr;
[all …]
H A Drw22 this size_t nbytes;
23 this string bufstr;
24 this string flow;
25 this void * buf;
26 this void * data;
35 this->flow = probefunc == "read" ? "<-" : "->";
36 this->buf = (void *)arg1;
37 this->nbytes = (size_t)arg2;
42 this->data = alloca(this->nbytes + 1);
43 copyinto((uintptr_t)this->buf, this->nbytes, this->data);
[all …]
H A Dsched32 this pid_t pid;
33 this string args;
34 this string details;
35 this u_char curprio;
40 this->args = this->args0;
41 this->details = "";
42 this->pid = this->pid0;
50 this->curprio = (u_char)((struct thread *)args[0])->td_priority;
54 this->args = this->args_sched;
55 this->pid = this->pid_sched;
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallVector.h144 reinterpret_cast<const char *>(this) + in getFirstEl()
157 bool isSmall() const { return this->BeginX == getFirstEl(); } in isSmall()
161 this->BeginX = getFirstEl(); in resetToSmall()
162 this->Size = this->Capacity = 0; // FIXME: Setting Capacity to 0 is suspect. in resetToSmall()
174 return isReferenceToRange(V, this->begin(), this->end()); in isReferenceToStorage()
182 return !LessThan(First, this->begin()) && !LessThan(Last, First) && in isRangeInStorage()
183 !LessThan(this->end(), Last); in isRangeInStorage()
194 if (NewSize <= this->size()) in isSafeToReferenceAfterResize()
195 return Elt < this->begin() + NewSize; in isSafeToReferenceAfterResize()
198 return NewSize <= this->capacity(); in isSafeToReferenceAfterResize()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTVector.h42 void setEnd(T *P) { this->End = P; } in setEnd()
72 return *this;
163 if (End < this->capacity_ptr()) { in push_back()
174 if (unsigned(this->capacity_ptr()-Begin) < N) in reserve()
180 size_t capacity() const { return this->capacity_ptr() - Begin; } in capacity()
191 if (NumInputs > size_type(this->capacity_ptr()-this->end())) in append()
192 this->grow(C, this->size()+NumInputs); in append()
197 std::uninitialized_copy(in_start, in_end, this->end()); in append()
198 this->setEnd(this->end() + NumInputs); in append()
204 if (NumInputs > size_type(this->capacity_ptr()-this->end())) in append()
[all …]
/freebsd/usr.bin/m4/tests/
H A Dregress.comments.out2 # this is a comment
3 >> this is a COMMENT
4 'XXX' this is a COMMENT
5 'XXX' this is a COMMENT q COMMENT too
8 # this is a COMMENT
9 >> this is a comment
10 'XXX' this is a COMMENT
11 'XXX' this is a COMMENT q COMMENT too
14 # this is a COMMENT
15 >> this is a COMMENT
[all …]
H A Dcomments.m46 # this is a comment
7 >> this is a comment
8 p this is a comment
9 p this is a comment q comment too
13 # this is a comment
14 >> this is a comment
15 p this is a comment
16 p this is a comment q comment too
20 # this is a comment
21 >> this is a comment
[all …]
/freebsd/stand/ficl/softwords/
H A Dstring.fr23 : get-count ( 2:this -- count ) my=[ .count get ] ;
24 : set-count ( count 2:this -- ) my=[ .count set ] ;
26 : ?empty ( 2:this -- flag ) --> get-count 0= ;
28 : get-buflen ( 2:this -- len ) my=[ .buflen get ] ;
29 : set-buflen ( len 2:this -- ) my=[ .buflen set ] ;
31 : get-buf ( 2:this -- ptr ) my=[ .buf get-ptr ] ;
32 : set-buf { ptr len 2:this -- }
33 ptr this my=[ .buf set-ptr ]
34 len this my=> set-buflen
38 : clr-buf ( 2:this -- )
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__ostream/
H A Dbasic_ostream.h51 this->init(__sb); in basic_ostream()
74 return __pf(*this);
79 __pf(*this);
80 return *this;
84 __pf(*this);
85 return *this;
113 _LIBCPP_HIDE_FROM_ABI basic_ostream& operator<<(nullptr_t) { return *this << "nullptr"; }
170 this->move(__rhs); in basic_ostream()
176 return *this;
188 sentry __s(*this);
[all …]
/freebsd/contrib/llvm-project/clang/lib/Basic/Targets/
H A DOSTargets.h46 getDarwinDefines(Builder, Opts, Triple, this->PlatformName, in getOSDefines()
47 this->PlatformMinVersion); in getOSDefines()
55 this->TLSSupported = false; in DarwinTargetInfo()
58 this->TLSSupported = !Triple.isMacOSXVersionLT(10, 7); in DarwinTargetInfo()
63 this->TLSSupported = !Triple.isOSVersionLT(8); in DarwinTargetInfo()
66 this->TLSSupported = !Triple.isOSVersionLT(9); in DarwinTargetInfo()
68 this->TLSSupported = !Triple.isOSVersionLT(10); in DarwinTargetInfo()
72 this->TLSSupported = !Triple.isOSVersionLT(2); in DarwinTargetInfo()
74 this->TLSSupported = !Triple.isOSVersionLT(3); in DarwinTargetInfo()
78 this->TLSSupported = true; in DarwinTargetInfo()
[all …]
/freebsd/crypto/openssl/Configurations/
H A DINTERNALS.Configure4 [ note: this file uses markdown for formatting ]
12 There's no claim for this document to be complete at any time, but it
26 # The top item of this stack has the following values
44 | ... whatever ... | | this line is processed |
46 | ... whatever ... | | this line is processed |
48 | ... whatever ... | | this line is skipped over |
50 | ... whatever ... | | this line is skipped over |
52 | ... whatever ... | | this line is processed |
54 | ... whatever ... | | this line is skipped over |
56 | ... whatever ... | | this line is skipped over |
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/json/
H A Dtst.usdt.d28 this->value = (int *)alloca(sizeof (int));
29 *this->value = 1;
30 copyout(this->value, arg0, sizeof (int));
35 this->j = copyinstr(arg0);
39 /json(this->j, "finished") == NULL && json(this->j, "action") != "ignore"/
41 this->index = strtoll(json(this->j, "index"));
42 this->size = json(this->j, "sizes[2]");
43 this->odd = json(this->j, "facts.odd");
44 this->even = json(this->j, "facts.even");
45 printf("[%d] sz %s odd %s even %s\n", this->index, this->size,
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/
H A Dtst.array.d41 this->f = (foo_t *)alloca(sizeof (foo_t));
43 this->f->a[0] = 1;
44 this->f->a[1] = 2;
45 this->f->a[2] = 3;
46 this->f->b[0] = 'a';
47 this->f->b[1] = 'b';
48 this->f->b[2] = 0;
49 this->f->c[0].alpha = 5;
50 this->f->c[1].alpha = 6;
51 this->f->c[2].alpha = 7;
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DInstructionCost.h108 return *this;
113 *this += RHS2;
114 return *this;
125 return *this;
130 *this -= RHS2;
131 return *this;
147 return *this;
152 *this *= RHS2;
153 return *this;
159 return *this;
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Dtst.ddi_pathname.d33 this->dev = (struct dev_info *)alloca(sizeof (struct dev_info));
34 this->minor1 =
36 this->minor2 =
38 this->minor3 =
41 this->minor1->d_minor.dev = 0;
42 this->minor1->next = this->minor2;
44 this->minor2->d_minor.dev = 0;
45 this->minor2->next = this->minor3;
47 this->minor3->d_minor.dev = 0;
48 this->minor3->next = this->minor1;
[all …]

12345678910>>...161