HomeSort by: relevance | last modified time | path
    Searched defs:imod (Results 1 - 7 of 7) sorted by relevancy

  /src/crypto/external/bsd/openssl.old/dist/crypto/conf/
conf_mod.c 58 static void module_finish(CONF_IMODULE *imod);
295 CONF_IMODULE *imod = NULL; local
298 imod = OPENSSL_malloc(sizeof(*imod));
299 if (imod == NULL)
302 imod->pmod = pmod;
303 imod->name = OPENSSL_strdup(name);
304 imod->value = OPENSSL_strdup(value);
305 imod->usr_data = NULL;
307 if (!imod->name || !imod->value
392 CONF_IMODULE *imod; local
    [all...]
  /src/sys/dev/bluetooth/
btkbd.c 272 int imod; local
274 imod = 0;
290 if (imod < MAXMOD) {
291 sc->sc_modloc[imod] = h.loc;
292 sc->sc_mods[imod].mask = 1 << imod;
293 sc->sc_mods[imod].key = HID_GET_USAGE(h.usage);
294 imod++;
321 sc->sc_nmod = imod;
  /src/crypto/external/apache2/openssl/dist/crypto/conf/
conf_mod.c 74 static void module_finish(CONF_IMODULE *imod);
432 CONF_IMODULE *imod = NULL; local
437 imod = OPENSSL_malloc(sizeof(*imod));
438 if (imod == NULL)
441 imod->pmod = pmod;
442 imod->name = OPENSSL_strdup(name);
443 imod->value = OPENSSL_strdup(value);
444 imod->usr_data = NULL;
446 if (!imod->name || !imod->value
571 CONF_IMODULE *imod; local
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/conf/
conf_mod.c 73 static void module_finish(CONF_IMODULE *imod);
410 CONF_IMODULE *imod = NULL; local
413 imod = OPENSSL_malloc(sizeof(*imod));
414 if (imod == NULL)
417 imod->pmod = pmod;
418 imod->name = OPENSSL_strdup(name);
419 imod->value = OPENSSL_strdup(value);
420 imod->usr_data = NULL;
422 if (!imod->name || !imod->value
525 CONF_IMODULE *imod; local
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 2352 unsigned imod = fieldFromInstruction(Insn, 18, 2); local
2366 // imod == '01' --> UNPREDICTABLE
2368 // return failure here. The '01' imod value is unprintable, so there's
2371 if (imod == 1) return MCDisassembler::Fail;
2373 if (imod && M) {
2375 Inst.addOperand(MCOperand::createImm(imod));
2378 } else if (imod && !M) {
2380 Inst.addOperand(MCOperand::createImm(imod));
2383 } else if (!imod && M) {
2388 // imod == '00' && M == '0' --> UNPREDICTABL
2399 unsigned imod = fieldFromInstruction(Insn, 9, 2); local
4436 unsigned imod = fieldFromInstruction(Insn, 4, 1) | 0x2; local
    [all...]
  /src/external/gpl3/binutils/dist/gas/config/
tc-arm.c 12153 unsigned int imod = (inst.instruction & 0x0030) >> 4;
12155 inst.instruction |= imod << 9;
12148 unsigned int imod = (inst.instruction & 0x0030) >> 4; local
  /src/external/gpl3/binutils.old/dist/gas/config/
tc-arm.c 12156 unsigned int imod = (inst.instruction & 0x0030) >> 4;
12158 inst.instruction |= imod << 9;
12151 unsigned int imod = (inst.instruction & 0x0030) >> 4; local

Completed in 84 milliseconds