Home
last modified time | relevance | path

Searched refs:gp (Results 1 – 25 of 321) sorted by relevance

12345678910>>...13

/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DGlobalizationPreferencesTest.java44 GlobalizationPreferences gp = new GlobalizationPreferences(); in TestDefault() local
57 ULocale gpLocale0 = gp.getLocale(0); in TestDefault()
64 ULocale gpLocale1 = gp.getLocale(1); in TestDefault()
71 ULocale gpLocale2 = gp.getLocale(2); in TestDefault()
77 Calendar cal = gp.getCalendar(); in TestDefault()
85 Collator coll = gp.getCollator(); in TestDefault()
93 BreakIterator brk = gp.getBreakIterator(GlobalizationPreferences.BI_CHARACTER); in TestDefault()
111 NumberFormat nf = gp.getNumberFormat(GlobalizationPreferences.NF_NUMBER); in TestDefault()
122 GlobalizationPreferences gp = new GlobalizationPreferences(); in TestFreezable() local
123 if (gp.isFrozen()) { in TestFreezable()
[all …]
/third_party/e2fsprogs/lib/ext2fs/
Dget_pathname.c50 struct get_pathname_struct *gp; in get_pathname_proc() local
54 gp = (struct get_pathname_struct *) priv_data; in get_pathname_proc()
57 gp->parent = dirent->inode; in get_pathname_proc()
58 if (dirent->inode == gp->search_ino) { in get_pathname_proc()
59 retval = ext2fs_get_mem(name_len + 1, &gp->name); in get_pathname_proc()
61 gp->errcode = retval; in get_pathname_proc()
64 strncpy(gp->name, dirent->name, name_len); in get_pathname_proc()
65 gp->name[name_len] = '\0'; in get_pathname_proc()
75 struct get_pathname_struct gp; in ext2fs_get_pathname_int() local
95 gp.search_ino = ino; in ext2fs_get_pathname_int()
[all …]
/third_party/uboot/u-boot-2020.01/arch/arm/mach-imx/
Di2c-mxv7.c22 gpio_direction_input(p->sda.gp); in force_idle_bus()
23 gpio_direction_input(p->scl.gp); in force_idle_bus()
28 sda = gpio_get_value(p->sda.gp); in force_idle_bus()
29 scl = gpio_get_value(p->scl.gp); in force_idle_bus()
34 sda, scl, p->sda.gp, p->scl.gp); in force_idle_bus()
37 gpio_direction_output(p->scl.gp, 0); in force_idle_bus()
39 gpio_direction_input(p->scl.gp); in force_idle_bus()
44 sda = gpio_get_value(p->sda.gp); in force_idle_bus()
45 scl = gpio_get_value(p->scl.gp); in force_idle_bus()
85 ret = gpio_request(p->sda.gp, name); in setup_i2c()
[all …]
/third_party/flutter/skia/src/gpu/
DGrDefaultGeoProcFactory.cpp68 const DefaultGeoProc& gp = args.fGP.cast<DefaultGeoProc>(); in onEmitCode() local
75 varyingHandler->emitAttributes(gp); in onEmitCode()
77 bool tweakAlpha = SkToBool(gp.fFlags & kCoverageAttributeTweak_GPFlag); in onEmitCode()
78 SkASSERT(!tweakAlpha || gp.hasVertexCoverage()); in onEmitCode()
81 if (gp.hasVertexColor() || tweakAlpha) { in onEmitCode()
87 if (gp.hasVertexColor()) { in onEmitCode()
88 vertBuilder->codeAppendf("half4 color = %s;", gp.fInColor.name()); in onEmitCode()
99 if (gp.fFlags & kColorAttributeIsSkColor_GPFlag) { in onEmitCode()
102 if (gp.fColorSpaceXform) { in onEmitCode()
103 fColorSpaceHelper.emitCode(uniformHandler, gp.fColorSpaceXform.get(), in onEmitCode()
[all …]
/third_party/musl/src/signal/mips/
Dsigsetjmp.s9 lui $gp, %hi(_gp_disp)
10 addiu $gp, %lo(_gp_disp)
12 addu $gp, $gp, $25
17 lw $25, %call16(setjmp)($gp)
27 lw $25, %call16(__sigsetjmp_tail)($gp)
31 1: lw $25, %call16(setjmp)($gp)
/third_party/uboot/u-boot-2020.01/arch/arm/include/asm/arch-armada100/
Dgpio.h20 #define GPIO_TO_REG(gp) (gp >> 5) argument
21 #define GPIO_TO_BIT(gp) (1 << (gp & 0x1F)) argument
22 #define GPIO_VAL(gp, val) ((val >> (gp & 0x1F)) & 0x01) argument
/third_party/skia/src/gpu/
DGrDefaultGeoProcFactory.cpp96 const DefaultGeoProc& gp = args.fGeomProc.cast<DefaultGeoProc>(); in onEmitCode() local
103 varyingHandler->emitAttributes(gp); in onEmitCode()
105 bool tweakAlpha = SkToBool(gp.fFlags & kCoverageAttributeTweak_GPFlag); in onEmitCode()
106 bool coverageNeedsSaturate = SkToBool(gp.fFlags & kCoverageAttributeUnclamped_GPFlag); in onEmitCode()
107 SkASSERT(!tweakAlpha || gp.hasVertexCoverage()); in onEmitCode()
112 if (gp.hasVertexColor() || tweakAlpha) { in onEmitCode()
117 if (gp.hasVertexColor()) { in onEmitCode()
118 vertBuilder->codeAppendf("half4 color = %s;", gp.fInColor.name()); in onEmitCode()
131 vertBuilder->codeAppendf("color = color * %s;", gp.fInCoverage.name()); in onEmitCode()
145 gp.fInPosition.name(), in onEmitCode()
[all …]
/third_party/flutter/skia/src/gpu/effects/
DGrBezierEffect.cpp71 const GrConicEffect& gp = args.fGP.cast<GrConicEffect>(); in onEmitCode() local
76 varyingHandler->emitAttributes(gp); in onEmitCode()
80 vertBuilder->codeAppendf("%s = %s;", v.vsOut(), gp.inConicCoeffs().name()); in onEmitCode()
90 gp.inPosition().name(), in onEmitCode()
91 gp.viewMatrix(), in onEmitCode()
98 gp.inPosition().asShaderVar(), in onEmitCode()
99 gp.localMatrix(), in onEmitCode()
194 if (gp.coverageScale() != 0xff) { in onEmitCode()
207 void GrGLConicEffect::GenKey(const GrGeometryProcessor& gp, in GenKey() argument
210 const GrConicEffect& ce = gp.cast<GrConicEffect>(); in GenKey()
[all …]
/third_party/flutter/skia/gm/
Dbeziereffects.cpp74 BezierTestOp(sk_sp<const GrGeometryProcessor> gp, const SkRect& rect, const SkPMColor4f& color, in BezierTestOp() argument
79 , fGeometryProcessor(std::move(gp)) in BezierTestOp()
89 sk_sp<const GrGeometryProcessor> gp() const { return fGeometryProcessor; } in gp() function in skiagm::BezierTestOp
114 sk_sp<const GrGeometryProcessor> gp, in Make() argument
120 return pool->allocate<BezierConicTestOp>(std::move(gp), rect, color, klm); in Make()
126 BezierConicTestOp(sk_sp<const GrGeometryProcessor> gp, const SkRect& rect, in BezierConicTestOp() argument
128 : INHERITED(std::move(gp), rect, color, ClassID()), fKLM(klm) {} in BezierConicTestOp()
136 SkASSERT(this->gp()->vertexStride() == sizeof(Vertex)); in onPrepareDraws()
150 helper.recordDraw(target, this->gp()); in onPrepareDraws()
208 sk_sp<GrGeometryProcessor> gp; in onDraw() local
[all …]
/third_party/musl/src/unistd/mips/
Dpipe.s6 lui $gp, %hi(_gp_disp)
7 addiu $gp, %lo(_gp_disp)
8 addu $gp, $gp, $25
13 lw $25, %call16(__syscall_ret)($gp)
/third_party/musl/src/ldso/mips/
Ddlsym.s6 lui $gp, %hi(_gp_disp)
7 addiu $gp, %lo(_gp_disp)
8 addu $gp, $gp, $25
10 lw $25, %call16(__dlsym)($gp)
/third_party/skia/src/gpu/effects/
DGrBezierEffect.cpp53 const GrConicEffect& gp = args.fGeomProc.cast<GrConicEffect>(); in onEmitCode() local
58 varyingHandler->emitAttributes(gp); in onEmitCode()
62 vertBuilder->codeAppendf("%s = %s;", v.vsOut(), gp.inConicCoeffs().name()); in onEmitCode()
74 gp.inPosition().name(), in onEmitCode()
75 gp.fViewMatrix, in onEmitCode()
77 if (gp.fUsesLocalCoords) { in onEmitCode()
82 gp.inPosition().asShaderVar(), in onEmitCode()
83 gp.fLocalMatrix, in onEmitCode()
136 if (gp.fCoverageScale != 0xff) { in onEmitCode()
241 const GrQuadEffect& gp = args.fGeomProc.cast<GrQuadEffect>(); in onEmitCode() local
[all …]
/third_party/skia/src/core/
DSkBlockAllocator.cpp129 GrowthPolicy gp = static_cast<GrowthPolicy>(fGrowthPolicy); in releaseBlock() local
130 if (fN0 > 0 && (fN1 > 1 || gp == GrowthPolicy::kFibonacci)) { in releaseBlock()
131 SkASSERT(gp != GrowthPolicy::kFixed); // fixed never needs undoing, fN0 always is 0 in releaseBlock()
132 if (gp == GrowthPolicy::kLinear) { in releaseBlock()
134 } else if (gp == GrowthPolicy::kFibonacci) { in releaseBlock()
140 SkASSERT(gp == GrowthPolicy::kExponential); in releaseBlock()
185 GrowthPolicy gp = static_cast<GrowthPolicy>(fGrowthPolicy); in reset() local
186 fN0 = (gp == GrowthPolicy::kLinear || gp == GrowthPolicy::kExponential) ? 1 : 0; in reset()
222 GrowthPolicy gp = static_cast<GrowthPolicy>(fGrowthPolicy); in addBlock() local
225 if (gp == GrowthPolicy::kFixed || gp == GrowthPolicy::kLinear) { in addBlock()
[all …]
/third_party/skia/src/gpu/ops/
DQuadPerEdgeAA.cpp665 const auto& gp = geomProc.cast<QuadPerEdgeAAGeometryProcessor>(); in makeProgramImpl() local
666 fTextureColorSpaceXformHelper.setData(pdman, gp.fTextureColorSpaceXform.get()); in makeProgramImpl()
673 const auto& gp = args.fGeomProc.cast<QuadPerEdgeAAGeometryProcessor>(); in makeProgramImpl() local
675 gp.fTextureColorSpaceXform.get()); in makeProgramImpl()
677 args.fVaryingHandler->emitAttributes(gp); in makeProgramImpl()
679 if (gp.fCoverageMode == CoverageMode::kWithPosition) { in makeProgramImpl()
682 if (gp.fNeedsPerspective) { in makeProgramImpl()
684 gp.fPosition.name()); in makeProgramImpl()
687 gp.fPosition.name()); in makeProgramImpl()
690 gp.fNeedsPerspective ? kFloat3_GrSLType in makeProgramImpl()
[all …]
/third_party/ffmpeg/libavformat/
Doggparsedirac.c69 int64_t gp = granule; in dirac_gptopts() local
73 unsigned dist = ((gp >> 14) & 0xff00) | (gp & 0xff); in dirac_gptopts()
74 int64_t dts = (gp >> 31); in dirac_gptopts()
75 int64_t pts = dts + ((gp >> 9) & 0x1fff); in dirac_gptopts()
102 static uint64_t old_dirac_gptopts(AVFormatContext *s, int idx, uint64_t gp, in old_dirac_gptopts() argument
107 uint64_t iframe = gp >> 30; in old_dirac_gptopts()
108 uint64_t pframe = gp & 0x3fffffff; in old_dirac_gptopts()
/third_party/libexif/m4m/
DMakefile.am2 gp-check-shell-environment.m4 \
3 gp-config-msg.m4 \
4 gp-documentation.m4 \
5 gp-gettext-hack.m4 \
/third_party/uboot/u-boot-2020.01/arch/arm/include/asm/mach-imx/
Dmxc_i2c.h16 unsigned char gp; member
73 .gp = scl_gp, \
78 .gp = sda_gp, \
85 .gp = scl_gp, \
90 .gp = sda_gp, \
/third_party/python/Lib/lib2to3/pgen2/
Ddriver.py113 def load_grammar(gt="Grammar.txt", gp=None, argument
118 gp = _generate_pickle_name(gt) if gp is None else gp
119 if force or not _newer(gp, gt):
123 logger.info("Writing grammar tables to %s", gp)
125 g.dump(gp)
130 g.load(gp)
/third_party/flutter/skia/src/gpu/ops/
DGrTessellatingPathRenderer.cpp258 void draw(Target* target, sk_sp<const GrGeometryProcessor> gp, size_t vertexStride) { in draw() argument
282 this->drawVertices(target, std::move(gp), std::move(cachedVertexBuffer), 0, in draw()
310 this->drawVertices(target, std::move(gp), std::move(vb), 0, count); in draw()
313 void drawAA(Target* target, sk_sp<const GrGeometryProcessor> gp, size_t vertexStride) { in drawAA() argument
329 this->drawVertices(target, std::move(gp), allocator.detachVertexBuffer(), in drawAA()
334 sk_sp<GrGeometryProcessor> gp; in onPrepareDraws() local
353 gp = GrDefaultGeoProcFactory::MakeForDeviceSpace(target->caps().shaderCaps(), in onPrepareDraws()
357 gp = GrDefaultGeoProcFactory::Make(target->caps().shaderCaps(), in onPrepareDraws()
362 if (!gp.get()) { in onPrepareDraws()
365 size_t vertexStride = gp->vertexStride(); in onPrepareDraws()
[all …]
DGrQuadPerEdgeAA.cpp900 const auto& gp = proc.cast<QuadPerEdgeAAGeometryProcessor>(); in createGLSLInstance() local
901 if (gp.fLocalCoord.isInitialized()) { in createGLSLInstance()
904 fTextureColorSpaceXformHelper.setData(pdman, gp.fTextureColorSpaceXform.get()); in createGLSLInstance()
911 const auto& gp = args.fGP.cast<QuadPerEdgeAAGeometryProcessor>(); in createGLSLInstance() local
913 gp.fTextureColorSpaceXform.get()); in createGLSLInstance()
915 args.fVaryingHandler->emitAttributes(gp); in createGLSLInstance()
917 if (gp.fCoverageMode == CoverageMode::kWithPosition) { in createGLSLInstance()
920 if (gp.fNeedsPerspective) { in createGLSLInstance()
922 gp.fPosition.name()); in createGLSLInstance()
925 gp.fPosition.name()); in createGLSLInstance()
[all …]
/third_party/libunwind/src/ia64/
DGfind_unwind_table.c42 Elf64_Addr gp = 0; in find_gp() local
54 gp = (Elf64_Addr) dyn->d_un.d_ptr + load_base; in find_gp()
83 gp = ((Elf64_Addr *) ((char *) edi->ei.image + shdr->sh_offset))[1]; in find_gp()
90 Debug (16, "image at %p, gp = %lx\n", edi->ei.image, gp); in find_gp()
91 return gp; in find_gp()
135 edi->di_cache.gp = find_gp (edi, pdyn, segbase - ptxt->p_vaddr); in ia64_find_unwind_table()
DGtables.c146 unw_word_t gp = di->gp; in _Uia64_find_dyn_list() local
222 return off + gp; in _Uia64_find_dyn_list()
298 pi->gp = di->gp; in unw_search_ia64_unwind_table()
363 Debug (4, "handler ptr @ offset=%lx, gp=%lx\n", handler_offset, di->gp); in unw_search_ia64_unwind_table()
364 if ((read_mem (as, handler_offset + di->gp, &pi->handler, arg)) < 0) in unw_search_ia64_unwind_table()
368 pi->gp = di->gp; in unw_search_ia64_unwind_table()
426 di->gp = 0; in get_kernel_table()
462 register unsigned long gp __asm__("gp"); in current_gp()
463 return gp; in current_gp()
541 di->gp = dyn->d_un.d_ptr; in callback()
[all …]
/third_party/flutter/skia/bench/
DVertexColorSpaceBench.cpp63 const GP& gp = args.fGP.cast<GP>(); in createGLSLInstance() local
69 varyingHandler->emitAttributes(gp); in createGLSLInstance()
74 vertBuilder->codeAppendf("half4 color = %s;", gp.fInColor.name()); in createGLSLInstance()
76 if (kShader_Mode == gp.fMode) { in createGLSLInstance()
77 fColorSpaceHelper.emitCode(uniformHandler, gp.fColorSpaceXform.get(), in createGLSLInstance()
89 this->writeOutputPosition(args.fVertBuilder, gpArgs, gp.fInPosition.name()); in createGLSLInstance()
97 const GP& gp = primProc.cast<GP>(); in createGLSLInstance() local
98 fColorSpaceHelper.setData(pdman, gp.fColorSpaceXform.get()); in createGLSLInstance()
163 sk_sp<GrGeometryProcessor> gp(new GP(fMode, fColorSpaceXform)); in onPrepareDraws() local
165 size_t vertexStride = gp->vertexStride(); in onPrepareDraws()
[all …]
/third_party/ffmpeg/libavutil/arm/
Dasm.S95 .unreq gp
204 .macro movrelx rd, val, gp argument
205 .ifc \rd,\gp
208 .ifc \rd\()_\gp,r12_
211 .ifc \rd\()_\gp,ip_
215 .ifnb \gp
217 .unreq gp
219 gp .req \gp
220 ldpic gp, _GLOBAL_OFFSET_TABLE_
222 gp .req r12
[all …]
/third_party/uboot/u-boot-2020.01/arch/nios2/cpu/
Du-boot.lds40 * is always gp-relative. Here we make all init data sections
42 * the global pointer for gp-relative access.
53 * gp - Since we don't use gp for small data with option "-G0",
54 * we will use gp as global data pointer. The _gp location is
76 * adjacent to sdata and can be referenced via gp. The normal

12345678910>>...13