Home
last modified time | relevance | path

Searched refs:gptr (Results 1 – 11 of 11) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/IntelJITEvents/
Dittnotify_config.h357 #define NEW_THREAD_INFO_W(gptr,h,h_tail,t,s,n) { \ argument
368 (gptr)->thread_list = h; \
374 #define NEW_THREAD_INFO_A(gptr,h,h_tail,t,s,n) { \ argument
385 (gptr)->thread_list = h; \
391 #define NEW_DOMAIN_W(gptr,h,h_tail,name) { \ argument
401 (gptr)->domain_list = h; \
407 #define NEW_DOMAIN_A(gptr,h,h_tail,name) { \ argument
417 (gptr)->domain_list = h; \
423 #define NEW_STRING_HANDLE_W(gptr,h,h_tail,name) { \ argument
432 (gptr)->string_list = h; \
[all …]
/third_party/zlib/contrib/iostream3/
Dzfstream.cc175 if (this->gptr() && (this->gptr() < this->egptr())) in showmanyc()
176 return std::streamsize(this->egptr() - this->gptr()); in showmanyc()
188 if (this->gptr() && (this->gptr() < this->egptr())) in underflow()
189 return traits_type::to_int_type(*(this->gptr())); in underflow()
209 return traits_type::to_int_type(*(this->gptr())); in underflow()
/third_party/ffmpeg/libavfilter/
Dvf_colortemperature.c118 uint8_t *gptr = frame->data[0] + slice_start * glinesize; in temperature_slice8() local
124 float g = gptr[x]; in temperature_slice8()
132 gptr[x] = av_clip_uint8(ng); in temperature_slice8()
137 gptr += glinesize; in temperature_slice8()
160 uint16_t *gptr = (uint16_t *)frame->data[0] + slice_start * glinesize; in temperature_slice16() local
166 float g = gptr[x]; in temperature_slice16()
174 gptr[x] = av_clip_uintp2_c(ng, depth); in temperature_slice16()
179 gptr += glinesize; in temperature_slice16()
Dvf_vibrance.c77 uint8_t *gptr = frame->data[0] + slice_start * glinesize; in vibrance_slice8() local
83 float g = gptr[x] * scale; in vibrance_slice8()
98 gptr[x] = av_clip_uint8(g * 255.f); in vibrance_slice8()
103 gptr += glinesize; in vibrance_slice8()
136 uint16_t *gptr = (uint16_t *)frame->data[0] + slice_start * glinesize; in vibrance_slice16() local
142 float g = gptr[x] * scale; in vibrance_slice16()
157 gptr[x] = av_clip_uintp2_c(g * max, depth); in vibrance_slice16()
162 gptr += glinesize; in vibrance_slice16()
Dvf_colorcontrast.c103 uint8_t *gptr = frame->data[0] + slice_start * glinesize; in colorcontrast_slice8() local
118 float g = gptr[x]; in colorcontrast_slice8()
131 gptr[x] = av_clip_uint8(ng); in colorcontrast_slice8()
136 gptr += glinesize; in colorcontrast_slice8()
157 uint16_t *gptr = (uint16_t *)frame->data[0] + slice_start * glinesize; in colorcontrast_slice16() local
172 float g = gptr[x]; in colorcontrast_slice16()
185 gptr[x] = av_clip_uintp2_c(ng, depth); in colorcontrast_slice16()
190 gptr += glinesize; in colorcontrast_slice16()
/third_party/mesa3d/src/gallium/auxiliary/driver_rbug/
Drbug_core.c235 struct rbug_proto_texture_read *gptr = (struct rbug_proto_texture_read *)header; in rbug_texture_read() local
248 if (gptr->texture == VOID2U64(tr_tex)) in rbug_texture_read()
260 gptr->level, gptr->face + gptr->zslice, in rbug_texture_read()
262 gptr->x, gptr->y, gptr->w, gptr->h, &t); in rbug_texture_read()
/third_party/zlib/contrib/iostream/
Dzfstream.cpp151 return (unsigned char) *gptr(); in underflow()
169 return (unsigned char) *gptr(); in underflow()
/third_party/ltp/tools/sparse/sparse-src/validation/
Denum-typecheck.c23 enum good *gptr = &g; variable
/third_party/pcre2/pcre2/src/
Dpcre2_compile.c9159 uint32_t *gptr, *gptrend; in get_branchlength() local
9378 for (gptr = cb->parsed_pattern; *gptr != META_END; gptr++) in get_branchlength()
9380 if (META_CODE(*gptr) == META_BIGVALUE) gptr++; in get_branchlength()
9381 else if (*gptr == (META_CAPTURE | group)) break; in get_branchlength()
9387 gptrend = parsed_skip(gptr + 1, PSKIP_KET); in get_branchlength()
9389 if (pptr > gptr && pptr < gptrend) goto ISNOTFIXED; /* Local recursion */ in get_branchlength()
9390 for (r = recurses; r != NULL; r = r->prev) if (r->groupptr == gptr) break; in get_branchlength()
9393 this_recurse.groupptr = gptr; in get_branchlength()
9400 gptr++; in get_branchlength()
9401 grouplength = get_grouplength(&gptr, FALSE, errcodeptr, lcptr, group, in get_branchlength()
/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo.hpp26850 const streamsize __ret = this->egptr() - this->gptr(); in in_avail()
26868 if (__builtin_expect(this->gptr() < this->egptr(), true)) in sbumpc()
26870 __ret = traits_type::to_int_type(*this->gptr()); in sbumpc()
26882 if (__builtin_expect(this->gptr() < this->egptr(), true)) in sgetc()
26883 __ret = traits_type::to_int_type(*this->gptr()); in sgetc()
26897 const bool __testpos = this->eback() < this->gptr(); in sputbackc()
26899 !traits_type::eq(__c, this->gptr()[-1]), false)) in sputbackc()
26904 __ret = traits_type::to_int_type(*this->gptr()); in sputbackc()
26913 if (__builtin_expect(this->eback() < this->gptr(), true)) in sungetc()
26916 __ret = traits_type::to_int_type(*this->gptr()); in sungetc()
[all …]
/third_party/libabigail/tests/data/test-read-dwarf/
Dtest22-pr19097-libstdc++.so.6.0.17.so.abi20461 …<function-decl name='gptr' mangled-name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE4gptrEv' file…
20818 …<function-decl name='gptr' mangled-name='_ZNKSt15basic_streambufIwSt11char_traitsIwEE4gptrEv' file…
56118 …<function-decl name='gptr' mangled-name='_ZNKSt15basic_streambufIcSt11char_traitsIcEE4gptrEv' file…
56475 …<function-decl name='gptr' mangled-name='_ZNKSt15basic_streambufIwSt11char_traitsIwEE4gptrEv' file…