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

  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUAtomicOptimizer.cpp 52 Value *const Identity) const;
54 Value *const Identity) const;
55 Value *buildShiftRight(IRBuilder<> &B, Value *V, Value *const Identity) const;
288 Value *const Identity) const {
299 {Identity, V, B.getInt32(DPP::ROW_XMASK0 | 1 << Idx),
326 Value *V, Value *const Identity) const {
336 {Identity, V, B.getInt32(DPP::ROW_SHR0 | 1 << Idx),
344 {Identity, V, B.getInt32(DPP::BCAST15), B.getInt32(0xa),
349 {Identity, V, B.getInt32(DPP::BCAST31), B.getInt32(0xc),
364 {Identity, PermX, B.getInt32(DPP::QUAD_PERM_ID)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
Reassociate.cpp 626 Constant *Identity = ConstantExpr::getBinOpIdentity(Opcode, I->getType());
627 assert(Identity && "Associative operation without identity!");
628 Ops.emplace_back(Identity, APInt(Bitwidth, 1));
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/
RetainSummaryManager.h 642 Identity,
  /src/external/apache2/llvm/dist/llvm/lib/IR/
ConstantFold.cpp 1116 // Simplify BinOps with their identity values first. They are no-ops and we
1118 // FIXME: remove unnecessary duplicated identity patterns below.
1121 Constant *Identity = ConstantExpr::getBinOpIdentity(Opcode, C1->getType());
1122 if (Identity) {
1123 if (C1 == Identity)
1125 if (C2 == Identity)
  /src/crypto/external/bsd/openssh/dist/
ssh-agent.c 136 typedef struct identity { struct
137 TAILQ_ENTRY(identity) next;
146 } Identity;
150 TAILQ_HEAD(idqueue, identity) idlist;
342 free_identity(Identity *id)
410 /* Check destination constraints on an identity against the hostkey/user */
413 const struct sshkey *tokey, Identity *id, const char *user,
457 debug2_f("%s identity \"%s\" not permitted for this destination",
464 * are permitted by the destination constraints on the Identity.
468 identity_permitted(Identity *id, SocketEntry *e, char *user
    [all...]
sshconnect2.c 311 typedef struct identity Identity;
314 struct identity { struct
315 TAILQ_ENTRY(identity) next;
323 TAILQ_HEAD(idlist, identity);
389 static int sign_and_send_pubkey(struct ssh *ssh, Identity *);
392 static struct sshkey *load_identity_file(Identity *);
684 * Format an identity for logging including filename, key type, fingerprint
688 format_identity(Identity *id)
718 Identity *id = NULL
    [all...]

Completed in 35 milliseconds