| /freebsd-10-stable/usr.sbin/pkg_install/lib/ |
| D | match.c | 34 struct store { struct 37 char **store; argument 42 struct store *storecreate(struct store *); 43 static int storeappend(struct store *, const char *); 63 static struct store *store = NULL; in matchinstalled() local 68 store = storecreate(store); in matchinstalled() 69 if (store == NULL) { in matchinstalled() 122 errcode = storeappend(store, matched); in matchinstalled() 137 storeappend(store, patterns[i]); in matchinstalled() 140 if (store->used == 0) in matchinstalled() [all …]
|
| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| D | Store.h | 61 virtual SVal getBinding(Store store, Loc loc, QualType T = QualType()) = 0; 70 virtual StoreRef Bind(Store store, Loc loc, SVal val) = 0; 72 virtual StoreRef BindDefault(Store store, const MemRegion *R, SVal V); 144 virtual StoreRef removeDeadBindings(Store store, const StackFrameContext *LCtx, 147 virtual bool includedInBindings(Store store, 152 virtual void incrementReferenceCount(Store store) {} in incrementReferenceCount() argument 157 virtual void decrementReferenceCount(Store store) {} in decrementReferenceCount() argument 184 virtual StoreRef invalidateRegions(Store store, 196 StoreRef enterStackFrame(Store store, 206 virtual void print(Store store, raw_ostream &Out, [all …]
|
| D | StoreRef.h | 31 Store store; variable 40 return x.store == store; 46 Store getStore() const { return store; } in getStore()
|
| /freebsd-10-stable/usr.sbin/pwd_mkdb/ |
| D | pwd_mkdb.c | 107 uint32_t store; in main() local 271 memmove(buf + 1, p, sizeof(store)); in main() 273 key.size = sizeof(store) + 1; in main() 368 #define SCALAR(e) store = htonl((uint32_t)(e)); \ in main() 369 memmove(p, &store, sizeof(store)); \ in main() 370 p += sizeof(store); in main() 371 #define LSCALAR(e) store = HTOL((uint32_t)(e)); \ in main() 372 memmove(p, &store, sizeof(store)); \ in main() 373 p += sizeof(store); in main() 419 store = htonl(cnt); in main() [all …]
|
| /freebsd-10-stable/usr.bin/printf/ |
| D | printf.c | 366 char *save, *store, c; in escape() local 369 for (save = store = fmt; ((c = *fmt) != 0); ++fmt, ++store) { in escape() 371 *store = c; in escape() 376 *store = '\\'; in escape() 377 *++store = '\0'; in escape() 378 *len = store - save; in escape() 382 *store = *fmt; in escape() 385 *store = '\a'; in escape() 388 *store = '\b'; in escape() 391 *store = '\0'; in escape() [all …]
|
| /freebsd-10-stable/bin/uuidgen/ |
| D | uuidgen.c | 48 uuid_t *store, *uuid; in main() local 86 store = (uuid_t*)malloc(sizeof(uuid_t) * count); in main() 87 if (store == NULL) in main() 92 if (uuidgen(store, count) != 0) in main() 95 uuid = store; in main() 102 uuid = store; in main() 109 free(store); in main()
|
| /freebsd-10-stable/gnu/usr.bin/rcs/lib/ |
| D | rcsrev.c | 372 store1(store, next) in store1() argument 373 struct hshentries ***store; in store1() 384 **store = p; 385 *store = &p->rest; 388 struct hshentry * genrevs(revno,date,author,state,store) in genrevs() argument 390 struct hshentries **store; 417 store1(&store, next); 442 store1(&store, next); 453 store1(&store, next); 455 *store = 0; [all …]
|
| /freebsd-10-stable/crypto/openssh/ |
| D | gss-serv-krb5.c | 184 client->store.filename = xstrdup(krb5_cc_get_name(krb_context, ccache)); 185 client->store.envvar = "KRB5CCNAME"; 186 len = strlen(client->store.filename) + 6; 187 client->store.envval = xmalloc(len); 188 snprintf(client->store.envval, len, "FILE:%s", client->store.filename); 192 do_pam_putenv(client->store.envvar, client->store.envval);
|
| D | gss-serv.c | 323 if (gssapi_client.store.filename != NULL) { in ssh_gssapi_cleanup_creds() 326 gssapi_client.store.filename); in ssh_gssapi_cleanup_creds() 327 unlink(gssapi_client.store.filename); in ssh_gssapi_cleanup_creds() 349 if (gssapi_client.store.envvar != NULL && in ssh_gssapi_do_child() 350 gssapi_client.store.envval != NULL) { in ssh_gssapi_do_child() 351 debug("Setting %s to %s", gssapi_client.store.envvar, in ssh_gssapi_do_child() 352 gssapi_client.store.envval); in ssh_gssapi_do_child() 353 child_set_env(envp, envsizep, gssapi_client.store.envvar, in ssh_gssapi_do_child() 354 gssapi_client.store.envval); in ssh_gssapi_do_child()
|
| /freebsd-10-stable/contrib/netbsd-tests/rump/kernspace/ |
| D | alloc.c | 48 static void *store[32]; variable 72 for (i = 0; i < __arraycount(store); i++) { in hthr() 73 pool_put(&pp1, store[i]); in hthr() 95 for (i = 0; i < __arraycount(store); i++) { in rumptest_alloc() 96 store[i] = pool_get(&pp1, PR_NOWAIT); in rumptest_alloc() 97 if (store[i] == NULL) { in rumptest_alloc()
|
| /freebsd-10-stable/crypto/openssl/crypto/x509/ |
| D | verify_extra_test.c | 141 X509_STORE *store = NULL; in test_alt_chains_cert_forgery() local 144 store = X509_STORE_new(); in test_alt_chains_cert_forgery() 145 if (store == NULL) in test_alt_chains_cert_forgery() 148 lookup = X509_STORE_add_lookup(store, X509_LOOKUP_file()); in test_alt_chains_cert_forgery() 166 if (!X509_STORE_CTX_init(sctx, store, x, untrusted)) in test_alt_chains_cert_forgery() 181 X509_STORE_free(store); in test_alt_chains_cert_forgery()
|
| D | x509_vfy.c | 2126 int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store, X509 *x509, in X509_STORE_CTX_init() argument 2130 ctx->ctx = store; in X509_STORE_CTX_init() 2161 if (store) in X509_STORE_CTX_init() 2162 ret = X509_VERIFY_PARAM_inherit(ctx->param, store->param); in X509_STORE_CTX_init() 2166 if (store) { in X509_STORE_CTX_init() 2167 ctx->verify_cb = store->verify_cb; in X509_STORE_CTX_init() 2169 ctx->cleanup = store->cleanup; in X509_STORE_CTX_init() 2182 if (store && store->check_issued) in X509_STORE_CTX_init() 2183 ctx->check_issued = store->check_issued; in X509_STORE_CTX_init() 2187 if (store && store->get_issuer) in X509_STORE_CTX_init() [all …]
|
| /freebsd-10-stable/contrib/llvm/patches/ |
| D | patch-r267981-llvm-r211435-fix-ppc-fctiduz.diff | 57 - store i64 %conv, i64* %b.addr, align 4 76 - store i64 %conv, i64* %b.addr, align 8 105 store float %conv, float* %b.addr, align 4 122 store float %conv, float* %b.addr, align 4 142 store float %conv, float* %b.addr, align 4 162 store float %conv, float* %b.addr, align 4 178 store double %conv, double* %b.addr, align 8 194 store double %conv, double* %b.addr, align 8 213 store double %conv, double* %b.addr, align 8 232 store double %conv, double* %b.addr, align 8 [all …]
|
| D | patch-r271597-clang-r217410-i386-garbage-float.diff | 3 Set trunc store action to Expand for all X86 targets. 8 would just output a store of a full double in the space for a float 40 Index: test/CodeGen/X86/dont-trunc-store-double-to-float.ll 42 --- test/CodeGen/X86/dont-trunc-store-double-to-float.ll (revision 0) 43 +++ test/CodeGen/X86/dont-trunc-store-double-to-float.ll (working copy) 56 + store double 3.140000e+00, double* %a 61 + store float %1, float* %b
|
| D | patch-r262261-llvm-r198893-sparc.diff | 46 - [(store i64:$rd, ADDRrr:$addr)]>; 50 - [(store i64:$rd, ADDRri:$addr)]>; 51 +defm STX : Store<"stx", 0b001110, store, I64Regs, i64>; 194 - [(store i32:$rd, ADDRrr:$addr)]>; 198 - [(store i32:$rd, ADDRri:$addr)]>; 201 +defm ST : Store<"st", 0b000100, store, IntRegs, i32>; 207 - [(store f32:$rd, ADDRrr:$addr)]>; 211 - [(store f32:$rd, ADDRri:$addr)]>; 215 - [(store f64:$rd, ADDRrr:$addr)]>; 219 - [(store f64:$rd, ADDRri:$addr)]>; [all …]
|
| /freebsd-10-stable/usr.bin/find/ |
| D | misc.c | 60 brace_subst(char *orig, char **store, char *path, size_t len) in brace_subst() argument 75 *store = reallocf(*store, newlen); in brace_subst() 76 if (*store == NULL) in brace_subst() 79 dst = *store; in brace_subst()
|
| /freebsd-10-stable/contrib/llvm/lib/Target/X86/ |
| D | X86InstrShiftRotate.td | 74 [(store (shl (loadi8 addr:$dst), CL), addr:$dst)], IIC_SR>; 77 [(store (shl (loadi16 addr:$dst), CL), addr:$dst)], IIC_SR>, 81 [(store (shl (loadi32 addr:$dst), CL), addr:$dst)], IIC_SR>; 84 [(store (shl (loadi64 addr:$dst), CL), addr:$dst)], IIC_SR>; 88 [(store (shl (loadi8 addr:$dst), (i8 imm:$src)), addr:$dst)], 92 [(store (shl (loadi16 addr:$dst), (i8 imm:$src)), addr:$dst)], 97 [(store (shl (loadi32 addr:$dst), (i8 imm:$src)), addr:$dst)], 101 [(store (shl (loadi64 addr:$dst), (i8 imm:$src)), addr:$dst)], 107 [(store (shl (loadi8 addr:$dst), (i8 1)), addr:$dst)], 111 [(store (shl (loadi16 addr:$dst), (i8 1)), addr:$dst)], [all …]
|
| /freebsd-10-stable/crypto/heimdal/kdc/ |
| D | announce.c | 400 update_entries(SCDynamicStoreRef store, const char *realm, int flags) in update_entries() argument 408 btmm = SCDynamicStoreCopyValue(store, NetworkChangedKey_BackToMyMac); in update_entries() 421 update_all(SCDynamicStoreRef store, CFArrayRef changedKeys, void *info) in update_all() argument 429 host = SCDynamicStoreCopyLocalHostName(store); in update_all() 457 update_entries(store, *r, flags); in update_all() 499 SCDynamicStoreRef store; in register_notification() local 505 store = SCDynamicStoreCreate(kCFAllocatorDefault, CFSTR("Network watcher"), in register_notification() 507 if (store == NULL) in register_notification() 517 if (SCDynamicStoreSetNotificationKeys(store, keys, NULL) == false) in register_notification() 523 if (!SCDynamicStoreSetDispatchQueue(store, g_queue)) in register_notification() [all …]
|
| /freebsd-10-stable/crypto/openssl/crypto/store/ |
| D | README | 23 The intention is that a STORE should be able to store everything 24 needed by an application that wants a cert/key store, as well as 25 the data a CA might need to store (this includes the serial number 67 store_object - store an object and the attributes 81 update_store - update the internal data of the store 82 lock_store - lock the store 83 unlock_store - unlock the store 91 A few words on the store functions as well: update_store is 95 are used for locking a store to allow exclusive writes.
|
| D | str_mem.c | 293 struct mem_data_st *store = (struct mem_data_st *)STORE_get_ex_data(s, 1); in mem_list_next() local 301 if (!store) { in mem_list_next() 311 srch = sk_MEM_OBJECT_DATA_find_ex(store->data, &key); in mem_list_next() 326 srch < sk_MEM_OBJECT_DATA_num(store->data) in mem_list_next() 328 sk_MEM_OBJECT_DATA_value(store->data, in mem_list_next() 332 sk_MEM_OBJECT_DATA_value(store->data, in mem_list_next() 338 return (sk_MEM_OBJECT_DATA_value(store->data, srch))->object; in mem_list_next()
|
| /freebsd-10-stable/contrib/llvm/lib/Target/MSP430/ |
| D | MSP430InstrInfo.td | 311 [(store (i8 imm:$src), addr:$dst)]>; 315 [(store (i16 imm:$src), addr:$dst)]>; 320 [(store GR8:$src, addr:$dst)]>; 324 [(store GR16:$src, addr:$dst)]>; 329 [(store (i8 (load addr:$src)), addr:$dst)]>; 333 [(store (i16 (load addr:$src)), addr:$dst)]>; 395 [(store (add (load addr:$dst), GR8:$src), addr:$dst), 400 [(store (add (load addr:$dst), GR16:$src), addr:$dst), 406 [(store (add (load addr:$dst), (i8 imm:$src)), addr:$dst), 411 [(store (add (load addr:$dst), (i16 imm:$src)), addr:$dst), [all …]
|
| /freebsd-10-stable/sys/kern/ |
| D | kern_uuid.c | 130 kern_uuidgen(struct uuid *store, size_t count) in kern_uuidgen() argument 163 store[n] = *(struct uuid *)&uuid; in kern_uuidgen() 167 return (store); in kern_uuidgen() 172 struct uuid *store; member 179 struct uuid *store; in sys_uuidgen() local 193 store = malloc(count * sizeof(struct uuid), M_TEMP, M_WAITOK); in sys_uuidgen() 194 kern_uuidgen(store, count); in sys_uuidgen() 195 error = copyout(store, uap->store, count * sizeof(struct uuid)); in sys_uuidgen() 196 free(store, M_TEMP); in sys_uuidgen()
|
| /freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/ |
| D | NVPTXLowerAggrCopies.cpp | 127 if (StoreInst *store = dyn_cast<StoreInst>(use)) { in runOnFunction() local 128 if (store->getOperand(0) != load) //getValueOperand in runOnFunction() 166 StoreInst *store = dyn_cast<StoreInst>(*load->use_begin()); in runOnFunction() local 168 Value *dstAddr = store->getOperand(1); in runOnFunction() 172 convertTransferToLoop(store, srcAddr, dstAddr, len, load->isVolatile(), in runOnFunction() 173 store->isVolatile(), Context, F); in runOnFunction() 175 store->eraseFromParent(); in runOnFunction()
|
| /freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/ |
| D | SystemZPatterns.td | 44 SDPatternOperator store, AddressingMode mode, 46 : Pat<(store (operator (load mode:$addr), imm:$src), mode:$addr), 70 // Record that it is equivalent to using OPERATOR to store a GR64. 76 // INSN and INSNY are an RX/RXY pair of instructions that store the low 78 // OPERATOR to store a GR64. 86 // Record that it is equivalent to using OPERATOR to store a GR64. 96 // INSN and INSNINV conditionally store the low 32 bits of a GPR to memory, 101 SDPatternOperator store, SDPatternOperator load, 103 def : Pat<(store (z_select_ccmask GR64:$new, (load mode:$addr), 108 def : Pat<(store (z_select_ccmask (load mode:$addr), GR64:$new, [all …]
|
| /freebsd-10-stable/sys/ofed/include/linux/ |
| D | device.h | 79 ssize_t (*store)(struct class *, struct class_attribute *, const char *, size_t); member 91 ssize_t (*store)(struct device *, member 193 if (dattr->store) in class_store() 194 error = dattr->store(container_of(kobj, struct class, kobj), in class_store() 211 .store = class_store, 273 if (dattr->store) in dev_store() 274 error = dattr->store(container_of(kobj, struct device, kobj), in dev_store() 279 static struct sysfs_ops dev_sysfs = { .show = dev_show, .store = dev_store, };
|