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

  /src/lib/libcrypt/
md5crypt.c 32 #define UPDATE(x, b, l) MD5Update((x), (b), (l))
69 UPDATE(&ctx, (const unsigned char *)pw, pwl);
72 UPDATE(&ctx, (const unsigned char *)MD5_MAGIC, MD5_MAGIC_LEN);
75 UPDATE(&ctx, (const unsigned char *)sp, sl);
79 UPDATE(&ctx1, (const unsigned char *)pw, pwl);
80 UPDATE(&ctx1, (const unsigned char *)sp, sl);
81 UPDATE(&ctx1, (const unsigned char *)pw, pwl);
85 UPDATE(&ctx, final, (unsigned int)(pl > 16 ? 16 : pl));
93 UPDATE(&ctx, final, 1);
95 UPDATE(&ctx, (const unsigned char *)pw, 1)
    [all...]
  /src/sys/arch/arm/imx/
imx23_timrot.c 120 #define UPDATE HW_TIMROT_TIMCTRL0_UPDATE
259 ctrl = IRQ_EN | UPDATE | RELOAD | SELECT_32KHZ;
  /src/sys/kern/
vfs_cache.c 275 #define UPDATE(nchcpu, f) do { \
1491 UPDATE(nchcpu, ncs_goodhits);
1492 UPDATE(nchcpu, ncs_neghits);
1493 UPDATE(nchcpu, ncs_badhits);
1494 UPDATE(nchcpu, ncs_falsehits);
1495 UPDATE(nchcpu, ncs_miss);
1496 UPDATE(nchcpu, ncs_long);
1497 UPDATE(nchcpu, ncs_pass2);
1498 UPDATE(nchcpu, ncs_2passes);
1499 UPDATE(nchcpu, ncs_revhits)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/gem/
i915_gem_execbuffer.c 58 #define UPDATE PIN_OFFSET_FIXED
124 * 3. Relocation - Update any addresses to point to the final locations
131 * we want to have to update any relocations pointing to this object. Ideally,
134 * object is elsewhere, we have to parse all the relocation entries and update
140 * the update. (If userspace is wrong, the likely outcome is an impromptu GPU
186 * then proceed to update any incorrect addresses with the objects.
540 entry->offset = vma->node.start | UPDATE;
612 entry->offset = vma->node.start | UPDATE;
1347 return target->node.start | UPDATE;
1441 /* and update the user's relocation entry *
    [all...]
  /src/sys/external/bsd/sljit/dist/sljit_src/
sljitNativeARM_T2_32.c 804 #define UPDATE 0x10
902 sljit_s32 update = flags & UPDATE; local in function:emit_op_mem
907 flags &= ~UPDATE;
917 if (SLJIT_UNLIKELY(update)) {
1270 flags = WORD_SIZE | UPDATE;
1273 flags = BYTE_SIZE | UPDATE;
1278 flags = BYTE_SIZE | SIGNED | UPDATE;
1283 flags = HALF_SIZE | UPDATE;
1288 flags = HALF_SIZE | SIGNED | UPDATE;
    [all...]
sljitNativeARM_64.c 782 #define UPDATE 0x04
846 if (SLJIT_UNLIKELY(flags & UPDATE)) {
936 if (SLJIT_UNLIKELY((flags & UPDATE) && (arg & REG_MASK))) {
937 /* Update only applies if a base register exists. */
1342 flags = WORD_SIZE | UPDATE;
1345 flags = BYTE_SIZE | UPDATE;
1350 flags = BYTE_SIZE | SIGNED | UPDATE;
1355 flags = HALF_SIZE | UPDATE;
1360 flags = HALF_SIZE | SIGNED | UPDATE;
1365 flags = INT_SIZE | UPDATE;
    [all...]
  /src/sys/dev/ic/
athvar.h 290 struct ieee80211_beacon_offsets sc_boff;/* dynamic update state */
295 UPDATE, /* update pending */
297 } sc_updateslot; /* slot time update fsm */
  /src/sys/net/
zlib.c 762 * Update a hash value with the given input byte
1282 * Read a new buffer from the current input stream, update the adler32
2576 * Compute the optimal bit lengths for a tree and update the total bit length
2706 * Update the total bit length for the current block.
2913 /* Update opt_len to include the bit length tree and counts */
3928 /* update pointers and return */
3932 #define UPDATE {UPDBITS UPDIN UPDOUT}
3933 #define LEAVE {UPDATE return inflate_flush(s,z,r);}
4080 /* copy input/output information to locals (UPDATE macro restores) */
4287 UPDATE
    [all...]

Completed in 25 milliseconds