Searched refs:load (Results 176 - 200 of 429) sorted by relevance

1234567891011>>

/freebsd-current/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DOutputSections.cpp317 TypeEntryBody *TypeEntry = Patch.TypeName->getValue().load();
345 TypeEntryBody *TypeEntry = Patch.TypeName->getValue().load();
424 TypeEntryBody *TypeEntry = Patch.RefTypeName->getValue().load();
437 TypeEntryBody *TypeEntry = Patch.TypeName->getValue().load();
450 TypeEntryBody *RefTypeEntry = Patch.RefTypeName->getValue().load();
/freebsd-current/crypto/openssl/crypto/sha/asm/
H A Dsha512-parisc.pl285 $LD `0*$SZ`($ctx),$A ; load context
297 mtctl $t0,%cr11 ; load %sar with align factor
304 for ($i=0;$i<15;$i++) { # load input block
333 $LD `0*$SZ`($ctx),@X[0] ; load context
396 ldw `-$XOFF+8*(($i+1)%16)+4`(%sp),$Xnlo ; load X[i+1]
406 ldw -4($Tbl),$Xlo ; load K[i]
471 ldw `-$XOFF+8*(($i+1)%16)+4`(%sp),$Xnlo ; load X[i+1]
473 ldw `-$XOFF+8*(($i+9)%16)+4`(%sp),$a0 ; load X[i+9]
475 ldw `-$XOFF+8*(($i+14)%16)+4`(%sp),$a2 ; load X[i+14]
509 ldw `0*4`($ctx),$Ahi ; load contex
[all...]
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Dvdev_mirror.c71 /* Preferred child vdev not found or equal load */
129 * The load configuration settings below are tuned by default for
138 /* Rotating media load calculation configuration. */
143 /* Non-rotating media load calculation configuration. */
186 int load; local
202 /* Standard load based on pending queue length. */
203 load = vdev_queue_length(vd);
210 return (load + zfs_vdev_mirror_non_rotating_inc);
220 return (load + zfs_vdev_mirror_non_rotating_seek_inc);
226 return (load
[all...]
/freebsd-current/crypto/openssl/crypto/modes/asm/
H A Dghashv8-armx.pl115 vld1.64 {$t1},[x1] @ load input H
227 vld1.64 {$t1},[$Xi] @ load Xi
229 vld1.64 {$H-$Hhl},[$Htbl] @ load twisted H, ...
289 vld1.64 {$Xl},[$Xi] @ load [rotated] Xi
305 vld1.64 {$H-$Hhl},[$Htbl],#32 @ load twisted H, ..., H^2
310 vld1.64 {$t0},[$inp],#16 @ load [rotated] I[0]
326 vld1.64 {$t1},[$inp],$inc @ load [rotated] I[1]
349 vld1.64 {$t0},[$inp],$inc @ load [rotated] I[i+2]
358 vld1.64 {$t1},[$inp],$inc @ load [rotated] I[i+3]
442 vld1.64 {$Xl},[$Xi] @ load [rotate
[all...]
H A Dghash-sparcv9.pl406 ldx [$Xip+8],$Xlo ! load Xi
408 ldx [$Htable+8],$Hlo ! load twisted H
462 ldx [$Xip+8],$C2 ! load Xi
464 ldx [$Htable+8],$Hlo ! load twisted H
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRForTarget.cpp733 LoadInst *load = dyn_cast<LoadInst>(selector_load); local
735 if (!load)
741 // %sel = load ptr, ptr @OBJC_SELECTOR_REFERENCES_, align 8
753 dyn_cast<GlobalVariable>(load->getPointerOperand());
829 // Replace the load with the call in all users
844 if (LoadInst *load = dyn_cast<LoadInst>(&inst))
845 if (IsObjCSelectorRef(load->getPointerOperand()))
917 // Now, since the variable is a pointer variable, we will drop in a load of
1291 if (LoadInst *load = dyn_cast<LoadInst>(&inst))
1292 if (isGuardVariableRef(load
[all...]
/freebsd-current/contrib/libevent/
H A Dht-internal.h300 #define HT_GENERATE(name, type, field, hashfn, eqfn, load, mallocfn, \
329 new_load_limit = (unsigned)(load*new_len); \
406 if (head->hth_load_limit != (unsigned)(load*head->hth_table_length)) \
/freebsd-current/contrib/ntp/sntp/libevent/
H A Dht-internal.h300 #define HT_GENERATE(name, type, field, hashfn, eqfn, load, mallocfn, \
329 new_load_limit = (unsigned)(load*new_len); \
406 if (head->hth_load_limit != (unsigned)(load*head->hth_table_length)) \
/freebsd-current/stand/i386/cdboot/
H A Dcdboot.S27 # This program is a freestanding boot program to load an a.out binary
29 # Torito standard. Due to broken BIOSen that do not load the desired
33 # binary. Then we attempt to load /boot/loader from the CD we were booted
345 ff.load: mov rec_lba,%eax # Load LBA
389 jnc ff.load # If subtract ok, keep going
444 putstr.load: lodsb # load %al from %ds:(%si)
450 jmp putstr.load # next char
/freebsd-current/stand/i386/pmbr/
H A Dpmbr.S72 # Relocate ourself to a lower address so that we have more room to load
157 cmp $0x9000,%ax # Don't load past 0x90000,
164 # Move to the next partition. If we walk off the end of the sector, load
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMachOPlatform.cpp844 std::lock_guard<std::mutex> Lock(MP.Bootstrap.load()->Mutex);
845 ++MP.Bootstrap.load()->ActiveGraphs;
853 {*MP.MachOHeaderStartSymbol, &MP.Bootstrap.load()->MachOHeaderAddr},
894 MP.Bootstrap.load()->MachOHeaderAddr;
895 MP.HeaderAddrToJITDylib[MP.Bootstrap.load()->MachOHeaderAddr] =
904 std::lock_guard<std::mutex> Lock(MP.Bootstrap.load()->Mutex);
906 --MP.Bootstrap.load()->ActiveGraphs;
909 if (MP.Bootstrap.load()->ActiveGraphs == 0)
910 MP.Bootstrap.load()->CV.notify_all();
1358 : MP.Bootstrap.load()
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/TextAPI/BinaryReader/
H A DDylibReader.cpp136 // load commands.
332 static Error load(MachOObjectFile *Obj, RecordsSlice &Slice, function
368 if (auto Err = load(Obj, *Results.back(), Opt, Arch))
409 if (auto Err = load(&Obj, *Results.back(), Opt, Arch))
/freebsd-current/sys/contrib/ck/include/gcc/sparcv9/
H A Dck_pr.h67 * Atomic operations are treated as both load and store
77 CK_PR_FENCE(load, "membar #LoadLoad")
/freebsd-current/tools/test/stress2/lib/
H A Dmain.c153 if (random_int(1,100) > op->load)
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/
H A Dsend_encrypted_files.ksh110 log_must zfs load-key $TESTPOOL/recv
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DStatistics.h34 return Duration(InternalDuration(value.load(std::memory_order_relaxed)));
/freebsd-current/contrib/googletest/googletest/test/
H A Dgoogletest-json-output-unittest.py788 actual = json.load(f)
/freebsd-current/contrib/file/src/
H A Dfile.c185 file_private struct magic_set *load(const char *, int);
281 if ((magic = load(magicfile, flags)) == NULL)
417 if ((magic = load(magicfile, flags)) == NULL)
489 load(const char *magicfile, int flags) function
/freebsd-current/sys/contrib/dev/iwlwifi/mvm/
H A Dcoex.c360 /* FIXME: TCM load per interface? or need something per link? */
362 data->primary_load = mvm->tcm.result.load[mvmvif->id];
364 data->secondary_load = mvm->tcm.result.load[mvmvif->id];
378 /* FIXME: TCM load per interface? or need something per link? */
380 data->primary_load = mvm->tcm.result.load[mvmvif->id];
382 data->secondary_load = mvm->tcm.result.load[mvmvif->id];
/freebsd-current/usr.bin/systat/
H A Dcmds.c63 if (strcmp(tmpstr1, "load") == 0) {
64 load();
/freebsd-current/stand/i386/boot2/
H A Dboot2.c111 static void load(void);
237 * or in case of failure, try to load a kernel directly instead.
243 load();
267 load();
279 load(void) function
/freebsd-current/stand/efi/boot1/
H A Dproto.c94 /* Run through each module, see if it can load this partition */
119 * load_loader attempts to load the loader image data.
122 * in order until a successful load occurs at which point it returns EFI_SUCCESS
141 if (mod->load(PATH_LOADER_EFI, dev, bufp, bufsize) ==
216 printf("Failed to load '%s'\n", PATH_LOADER_EFI);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_rtl.cpp84 MEMPROF_MEMORY_ACCESS_CALLBACK(load)
/freebsd-current/lib/libc/amd64/string/
H A Dstrcmp.S111 movdqa (%rdi), %xmm0 # load aligned heads
131 movdqu (%r8, %rax, 1), %xmm0 # load true (or fake) heads
135 0: movdqu (%rdi, %rax, 1), %xmm0 # load true heads
145 /* load head and second chunk */
146 movdqa 16(%rdi), %xmm2 # load second chunks
/freebsd-current/sys/contrib/ck/include/gcc/aarch64/
H A Dck_pr.h75 CK_PR_FENCE(load, CK_DMB_LD)

Completed in 397 milliseconds

1234567891011>>