Home
last modified time | relevance | path

Searched refs:gptr (Results 1 - 16 of 16) sorted by relevance

/third_party/node/deps/v8/third_party/ittapi/src/ittnotify/
H A Dittnotify_config.h455 #define NEW_THREAD_INFO_W(gptr,h,h_tail,t,s,n) { \
466 (gptr)->thread_list = h; \
472 #define NEW_THREAD_INFO_A(gptr,h,h_tail,t,s,n) { \
483 (gptr)->thread_list = h; \
489 #define NEW_DOMAIN_W(gptr,h,h_tail,name) { \
499 (gptr)->domain_list = h; \
505 #define NEW_DOMAIN_A(gptr,h,h_tail,name) { \
515 (gptr)->domain_list = h; \
521 #define NEW_STRING_HANDLE_W(gptr,h,h_tail,name) { \
530 (gptr)
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Dittnotify_config.h357 #define NEW_THREAD_INFO_W(gptr,h,h_tail,t,s,n) { \
368 (gptr)->thread_list = h; \
374 #define NEW_THREAD_INFO_A(gptr,h,h_tail,t,s,n) { \
385 (gptr)->thread_list = h; \
391 #define NEW_DOMAIN_W(gptr,h,h_tail,name) { \
401 (gptr)->domain_list = h; \
407 #define NEW_DOMAIN_A(gptr,h,h_tail,name) { \
417 (gptr)->domain_list = h; \
423 #define NEW_STRING_HANDLE_W(gptr,h,h_tail,name) { \
432 (gptr)
[all...]
/third_party/zlib/contrib/iostream3/
H A Dzfstream.cc175 if (this->gptr() && (this->gptr() < this->egptr())) in showmanyc()
176 return std::streamsize(this->egptr() - this->gptr()); in showmanyc()
187 // to be called when gptr >= egptr, but it serves as error check) in underflow()
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()
275 // This follows from [27.5.2.4.3]/12 (gptr needs to point at something, it seems) in setbuf()
/third_party/ffmpeg/libavfilter/
H A 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()
H A 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()
H A 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()
/third_party/mesa3d/src/gallium/auxiliary/driver_rbug/
H A 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/backends/backend/pixma/
H A Dpixma_common.c337 * gptr: destination gray scale buffer
342 pixma_r_to_ir (uint8_t * gptr, uint8_t * sptr, unsigned w, unsigned c) in pixma_r_to_ir() argument
350 *gptr++ = *sptr++; in pixma_r_to_ir()
351 if (c == 6) *gptr++ = *sptr++; /* 48 bit RGB: high byte */ in pixma_r_to_ir()
354 return gptr; in pixma_r_to_ir()
362 * gptr: destination gray scale buffer
367 pixma_rgb_to_gray (uint8_t * gptr, uint8_t * sptr, unsigned w, unsigned c) in pixma_rgb_to_gray() argument
391 *gptr++ = g; in pixma_rgb_to_gray()
392 if (c == 6) *gptr++ = (g >> 8); /* 16 bit gray: high byte */ in pixma_rgb_to_gray()
394 return gptr; in pixma_rgb_to_gray()
[all...]
H A Dpixma_common.h192 uint8_t * pixma_r_to_ir (uint8_t * gptr, uint8_t * sptr, unsigned w, unsigned c);
193 uint8_t * pixma_rgb_to_gray (uint8_t * gptr, uint8_t * sptr, unsigned w, unsigned c);
H A Dpixma_mp750.c451 rgb_to_gray (uint8_t * gptr, const uint8_t * cptr, unsigned pixels, unsigned c) in rgb_to_gray() argument
455 /* gptr: destination gray scale buffer */ in rgb_to_gray()
467 *gptr++ = g; in rgb_to_gray()
468 if (c == 6) *gptr++ = (g >> 8); in rgb_to_gray()
470 return gptr; in rgb_to_gray()
H A Dpixma_mp800.c1611 uint8_t *sptr, *dptr, *gptr, *cptr; in post_process_image_data() local
1656 sptr = dptr = gptr = cptr = mp->imgbuf; in post_process_image_data()
1802 cptr = gptr = pixma_binarize_line (s->param, gptr, cptr, s->param->w, c); in post_process_image_data()
1806 cptr = gptr = pixma_r_to_ir (gptr, cptr, s->param->w, c); in post_process_image_data()
1813 cptr = gptr = pixma_rgb_to_gray (gptr, cptr, s->param->w, c); in post_process_image_data()
H A Dpixma_mp150.c1148 uint8_t *sptr, *dptr, *gptr, *cptr; in post_process_image_data() local
1177 sptr = dptr = gptr = cptr = mp->imgbuf; in post_process_image_data()
1232 cptr = gptr = pixma_binarize_line (s->param, gptr, cptr, s->param->w, c); in post_process_image_data()
1235 cptr = gptr = pixma_rgb_to_gray (gptr, cptr, s->param->w, c); in post_process_image_data()
/third_party/ltp/tools/sparse/sparse-src/validation/
H A Denum-typecheck.c23 enum good *gptr = &g; variable
/third_party/zlib/contrib/iostream/
H A Dzfstream.cpp151 return (unsigned char) *gptr(); in underflow()
169 return (unsigned char) *gptr(); in underflow()
/third_party/pcre2/pcre2/src/
H A Dpcre2_compile.c9161 uint32_t *gptr, *gptrend; in get_branchlength() local
9380 for (gptr = cb->parsed_pattern; *gptr != META_END; gptr++) in get_branchlength()
9382 if (META_CODE(*gptr) == META_BIGVALUE) gptr++; in get_branchlength()
9383 else if (*gptr == (META_CAPTURE | group)) break; in get_branchlength()
9389 gptrend = parsed_skip(gptr + 1, PSKIP_KET); in get_branchlength()
9391 if (pptr > gptr && pptr < gptrend) goto ISNOTFIXED; /* Local recursion */ in get_branchlength()
9392 for (r = recurses; r != NULL; r = r->prev) if (r->groupptr == gptr) brea in get_branchlength()
[all...]
/third_party/rust/crates/bindgen/bindgen-tests/tests/
H A Dstylo.hpp26850 const streamsize __ret = this->egptr() - this->gptr();
26868 if (__builtin_expect(this->gptr() < this->egptr(), true))
26870 __ret = traits_type::to_int_type(*this->gptr());
26882 if (__builtin_expect(this->gptr() < this->egptr(), true))
26883 __ret = traits_type::to_int_type(*this->gptr());
26897 const bool __testpos = this->eback() < this->gptr();
26899 !traits_type::eq(__c, this->gptr()[-1]), false))
26904 __ret = traits_type::to_int_type(*this->gptr());
26913 if (__builtin_expect(this->eback() < this->gptr(), true))
26916 __ret = traits_type::to_int_type(*this->gptr());
[all...]

Completed in 45 milliseconds