/third_party/openssl/crypto/conf/ |
D | conf_mod.c | 73 static void module_finish(CONF_IMODULE *imod); 404 CONF_IMODULE *imod = NULL; in module_init() local 407 imod = OPENSSL_malloc(sizeof(*imod)); in module_init() 408 if (imod == NULL) in module_init() 411 imod->pmod = pmod; in module_init() 412 imod->name = OPENSSL_strdup(name); in module_init() 413 imod->value = OPENSSL_strdup(value); in module_init() 414 imod->usr_data = NULL; in module_init() 416 if (!imod->name || !imod->value) in module_init() 421 ret = pmod->init(imod, cnf); in module_init() [all …]
|
/third_party/node/deps/openssl/openssl/crypto/conf/ |
D | conf_mod.c | 73 static void module_finish(CONF_IMODULE *imod); 410 CONF_IMODULE *imod = NULL; in module_init() local 413 imod = OPENSSL_malloc(sizeof(*imod)); in module_init() 414 if (imod == NULL) in module_init() 417 imod->pmod = pmod; in module_init() 418 imod->name = OPENSSL_strdup(name); in module_init() 419 imod->value = OPENSSL_strdup(value); in module_init() 420 imod->usr_data = NULL; in module_init() 422 if (!imod->name || !imod->value) in module_init() 427 ret = pmod->init(imod, cnf); in module_init() [all …]
|
/third_party/vk-gl-cts/framework/common/ |
D | tcuTexVerifierUtil.cpp | 132 static inline int imod (int a, int b) in imod() function 157 return imod(c, size); in wrap() 165 return (size - 1) - mirror(imod(c, 2*size) - size); in wrap()
|
D | tcuTexture.cpp | 1731 static inline int imod (int a, int b) in imod() function 1769 return imod(c, size); in wrap() 1772 return imod(c, size); in wrap() 1779 return (size - 1) - mirror(imod(c, 2*size) - size); in wrap()
|
/third_party/python/Lib/ |
D | operator.py | 361 def imod(a, b): function 452 __imod__ = imod
|
/third_party/icu/icu4c/source/test/intltest/ |
D | numbertest_patternmodifier.cpp | 143 LocalPointer<ImmutablePatternModifier> imod(mod.createImmutable(status), status); in testPatternWithNoPlaceholder() local 151 imod->applyToMicros(micros, quantity, status); in testPatternWithNoPlaceholder()
|
/third_party/mesa3d/src/compiler/nir/tests/ |
D | algebraic_tests.cpp | 162 TEST_F(nir_opt_idiv_const_test, imod) in TEST_F() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/Disassembler/ |
D | ARMDisassembler.cpp | 2331 unsigned imod = fieldFromInstruction(Insn, 18, 2); in DecodeCPSInstruction() local 2350 if (imod == 1) return MCDisassembler::Fail; in DecodeCPSInstruction() 2352 if (imod && M) { in DecodeCPSInstruction() 2354 Inst.addOperand(MCOperand::createImm(imod)); in DecodeCPSInstruction() 2357 } else if (imod && !M) { in DecodeCPSInstruction() 2359 Inst.addOperand(MCOperand::createImm(imod)); in DecodeCPSInstruction() 2362 } else if (!imod && M) { in DecodeCPSInstruction() 2378 unsigned imod = fieldFromInstruction(Insn, 9, 2); in DecodeT2CPSInstruction() local 2390 if (imod == 1) return MCDisassembler::Fail; in DecodeT2CPSInstruction() 2392 if (imod && M) { in DecodeT2CPSInstruction() [all …]
|
/third_party/mesa3d/docs/relnotes/ |
D | 21.1.7.rst | 157 - nir/algebraic: fix imod by negative power-of-two
|
D | 21.3.0.rst | 3527 - nir/algebraic: fix imod by negative power-of-two 3528 - nir/algebraic: don't optimize umod/imod/irem if lower_bitops=true 3533 - nir/idiv_const: optimize imod/irem 3535 - nir/tests: add tests for umod/imod/irem optimizations
|
D | 21.0.0.rst | 801 - nir: add strength reduction pattern for imod/irem with pow2 divisor.
|
/third_party/python/Doc/library/ |
D | operator.rst | 507 .. function:: imod(a, b) 510 ``a = imod(a, b)`` is equivalent to ``a %= b``.
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ycbcr/ |
D | vktYCbCrUtil.cpp | 1403 int imod (int a, int b) in imod() function 1609 return (size - 1) - mirror(imod(coord, 2 * size) - size); in wrap() 1612 return imod(coord, size); in wrap()
|
/third_party/skia/third_party/externals/swiftshader/src/Shader/ |
D | ShaderCore.hpp | 260 void imod(Vector4f &dst, const Vector4f &src0, const Vector4f &src1);
|
D | VertexProgram.cpp | 262 case Shader::OPCODE_IMOD: imod(d, s0, s1); break; in program()
|
D | PixelProgram.cpp | 242 case Shader::OPCODE_IMOD: imod(d, s0, s1); break; in applyShader()
|
D | ShaderCore.cpp | 882 void ShaderCore::imod(Vector4f &dst, const Vector4f &src0, const Vector4f &src1) in imod() function in sw::ShaderCore
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | ARMInstrThumb.td | 371 def tCPS : T1I<(outs), (ins imod_op:$imod, iflags_op:$iflags), 372 NoItinerary, "cps$imod $iflags", []>, 375 bit imod; 378 let Inst{4} = imod;
|
D | ARMInstrThumb2.td | 3919 bits<2> imod; 3925 let Inst{10-9} = imod; 3933 def t2CPS3p : t2CPS<(ins imod_op:$imod, iflags_op:$iflags, i32imm:$mode), 3934 "$imod\t$iflags, $mode">; 3936 def t2CPS2p : t2CPS<(ins imod_op:$imod, iflags_op:$iflags), 3937 "$imod.w\t$iflags">; 3938 let imod = 0, iflags = 0, M = 1 in 3941 def : t2InstAlias<"cps$imod.w $iflags, $mode", 3942 (t2CPS3p imod_op:$imod, iflags_op:$iflags, i32imm:$mode), 0>;
|
D | ARMInstrInfo.td | 2108 bits<2> imod; 2115 let Inst{19-18} = imod; 2125 def CPS3p : CPS<(ins imod_op:$imod, iflags_op:$iflags, imm0_31:$mode), 2126 "$imod\t$iflags, $mode">; 2128 def CPS2p : CPS<(ins imod_op:$imod, iflags_op:$iflags), "$imod\t$iflags">; 2130 let imod = 0, iflags = 0, M = 1 in
|
D | ARMInstrFormats.td | 140 // ARM imod and iflag operands, used only by the CPS instruction.
|
/third_party/python/Lib/test/ |
D | test_operator.py | 485 self.assertEqual(operator.imod (c, 5), "imod")
|
/third_party/icu/icu4j/perf-tests/data/udhr/ |
D | udhr_dan.txt | 8 …ederne. Erklæringen blev vedtaget med 48 landes ja-stemmer Ingen lande stemte imod. 8 lande afstod.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/ARM/ |
D | ARMGenMCCodeEmitter.inc | 12490 // op: imod 12502 // op: imod 12515 // op: imod 12532 // op: imod 12545 // op: imod
|
/third_party/libexif/po/ |
D | da.po | 1754 msgstr "Mærke '%s' var af format '%s' (som er imod specifikation), og er blevet ændret til format '… 1759 msgstr "Mærke '%s' er af format '%s' (som er imod specifikation), men kan ikke ændres til format '%…
|