Home
last modified time | relevance | path

Searched refs:block (Results 1 – 25 of 25) sorted by relevance

/utopia/UTPA2-700.0.x/projects/build/scripts/mod/
H A Dsumversion.c42 uint32_t block[MD4_BLOCK_WORDS]; member
156 le32_to_cpu_array(ctx->block, sizeof(ctx->block) / sizeof(uint32_t)); in md4_transform_helper()
157 md4_transform(ctx->hash, ctx->block); in md4_transform_helper()
172 const uint32_t avail = sizeof(mctx->block) - (mctx->byte_count & 0x3f); in md4_update()
177 memcpy((char *)mctx->block + (sizeof(mctx->block) - avail), in md4_update()
182 memcpy((char *)mctx->block + (sizeof(mctx->block) - avail), in md4_update()
189 while (len >= sizeof(mctx->block)) { in md4_update()
190 memcpy(mctx->block, data, sizeof(mctx->block)); in md4_update()
192 data += sizeof(mctx->block); in md4_update()
193 len -= sizeof(mctx->block); in md4_update()
[all …]
/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/usbhost/
H A DdrvPCIMEM.c249 int map, block; in pci_pool_alloc() local
267 block = ffz (~ page->bitmap [map]); in pci_pool_alloc()
268 if ((i + block) < pool->blocks_per_page) { in pci_pool_alloc()
269 clear_bit ( block, &page->bitmap [map],U32); in pci_pool_alloc()
270 offset = (BITS_PER_LONG * map) + block; in pci_pool_alloc()
473 int map, block; in pci_pool_free() local
498 block = dma - page->dma; in pci_pool_free()
499 block /= pool->size; in pci_pool_free()
500 map = block / BITS_PER_LONG; in pci_pool_free()
501 block %= BITS_PER_LONG; in pci_pool_free()
[all …]
/utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/linux/
H A Dreiserfs_fs.h217 #define is_block_in_log_or_reserved_area(s, block) \ argument
218 block >= SB_JOURNAL_1st_RESERVED_BLOCK(s) \
219 && block < SB_JOURNAL_1st_RESERVED_BLOCK(s) + \
1615 #define _jhashfn(sb,block) \ argument
1617 (((block)<<(JBH_HASH_SHIFT - 6)) ^ ((block) >> 13) ^ ((block) << (JBH_HASH_SHIFT - 12))))
1618 #define journal_hash(t,sb,block) ((t)[_jhashfn((sb),(block)) & JBH_HASH_MASK]) argument
1621 #define journal_find_get_block(s, block) __find_get_block(SB_JOURNAL(s)->j_dev_bd, block, s->s_bloc… argument
1622 #define journal_getblk(s, block) __getblk(SB_JOURNAL(s)->j_dev_bd, block, s->s_blocksize) argument
1623 #define journal_bread(s, block) __bread(SB_JOURNAL(s)->j_dev_bd, block, s->s_blocksize) argument
1867 int reiserfs_get_block(struct inode *inode, sector_t block,
[all …]
H A Dfuse.h371 __u64 block; member
377 __u64 block; member
H A Di2c.h132 __u8 block[I2C_SMBUS_BLOCK_MAX + 2]; /* block[0] is used for length */ member
/utopia/UTPA2-700.0.x/projects/build/scripts/
H A Dcheckpatch.pl2551 my ($cond, $block) = @{$chunk};
2563 $ln += statement_rawlines($block) - 1;
2565 substr($block, 0, length($cond), '');
2567 $seen++ if ($block =~ /^\s*{/);
2574 if ($block =~/\b(?:if|for|while)\b/) {
2578 if (statement_block_size($block) > 1) {
2602 my ($cond, $block) = @{$chunks[0]};
2605 substr($block, 0, length($cond), '');
2611 if ($block =~/\b(?:if|for|while)\b/) {
2615 if (statement_block_size($block) > 1) {
[all …]
/utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/bits/
H A Dstab.def139 /* Beginning of lexical block.
141 The value is the address of the start of the text for the block.
142 The variables declared inside the block *precede* the N_LBRAC symbol. */
154 /* End of a lexical block. Desc matches the N_LBRAC's desc.
155 The value is the address of the end of the text for the block. */
158 /* Begin named common block. Only the name is significant. */
161 /* End named common block. Only the name is significant
/utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/rpcsvc/
H A Dnlm_prot.x67 bool block; member
76 bool block; member
H A Dnlm_prot.h74 bool_t block; member
84 bool_t block; member
H A Dklm_prot.x99 bool block; member
H A Dklm_prot.h57 bool_t block; member
/utopia/UTPA2-700.0.x/modules/flash/drv/flash/serial/
H A DRelease Note.txt23 2009-12-18: [All CHIP]Added 2 CMDs(Sector erase and 32KB erase), modify original block erase CMD fr…
27 2010-01-11: [All CHIP]Fix some flash block erase function (because USB disk updated fails).
/utopia/UTPA2-700.0.x/modules/vdec_v3/api/vdec_v3/
H A DapiVDEC_EX.c.0711 … VDEC_EX_ALLOCAOTR_MAX_NUM_BLOCK (128) // Maximun number of blocks in block pool
730 MS_PHY phyAddr; // start address of this block
731 MS_SIZE szSize; // total size of this block
739 MS_U16 u16BlockIdPrev; // block ID of previous block using in list
740 MS_U16 u16BlockIdNext; // block ID of next block using in list
750 MS_U16 u16BlockIdHead; // block ID of head block using in list
751 MS_U16 u16BlockIdTail; // block ID of tail block using in list
2124 …ALLOCATOR_PRINTF_ERR("[ALLOC][ERR][%s][%d] Invalid block ID: %d\n", __FUNCTION__, __LINE__, u16Blo…
2251 // get new block
2260 // initial the block info of this new block
[all …]
/utopia/UTPA2-700.0.x/projects/build/
H A DKconfig867 bool "block"
875 default "block" if BLOCK
H A DbspOneUtopia.dxyfile162 # treat a multi-line C++ special comment block (i.e. a block of //! or ///
164 # The new default is to treat a multi-line C++ comment block as a detailed
358 # function's detailed documentation block.
H A Dbsp.dxyfile161 # treat a multi-line C++ special comment block (i.e. a block of //! or ///
163 # The new default is to treat a multi-line C++ comment block as a detailed
357 # function's detailed documentation block.
H A DMakefile180 ifeq ($(ASSERT_TYPE), block)
/utopia/UTPA2-700.0.x/modules/gpd/drv/gpd/
H A Dzutil.h179 void _Cdecl farfree( void *block );
/utopia/UTPA2-700.0.x/modules/ipauth/drv/ipauth/
H A DdrvIPAUTH.c325 static void MDrv_AUTH_MD5Transform(MS_U32 state[4], MS_U8 block[64]) in MDrv_AUTH_MD5Transform()
335 MDrv_AUTH_Decode (x, block, 64); in MDrv_AUTH_MD5Transform()
/utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/
H A Dobstack.h190 void obstack_free (struct obstack *obstack, void *block);
/utopia/UTPA2-700.0.x/modules/xc/hal/k6lite/xc/include/
H A Dmhal_xc_chip_config.h.0248 Each block contain 4 fields (F0 ~ F3) and each fields in one block is 64 bits
/utopia/UTPA2-700.0.x/projects/build/scripts/dtc/
H A Ddtc-lexer.lex.c_shipped1623 /* This block is copied from yy_switch_to_buffer. */
/utopia/UTPA2-700.0.x/projects/build/scripts/kconfig/
H A Dlex.zconf.c_shipped1940 /* This block is copied from zconf_switch_to_buffer. */
H A Dzconf.tab.c_shipped2306 zconf_error("unexpected '%s' within %s block",
/utopia/UTPA2-700.0.x/projects/build/scripts/genksyms/
H A Dlex.c_shipped1821 /* This block is copied from yy_switch_to_buffer. */