HomeSort by relevance Sort by last modified time
    Searched refs:maptype (Results 1 - 23 of 23) sorted by null

  /prebuilts/go/darwin-x86/test/fixedbugs/issue4879.dir/
a.go 15 type maptype map[int]int type
30 root: unsafe.Pointer(&maptype{}),
  /prebuilts/go/linux-x86/test/fixedbugs/issue4879.dir/
a.go 15 type maptype map[int]int type
30 root: unsafe.Pointer(&maptype{}),
  /external/tremolo/Tremolo/
codebook.c 62 codebook *b,oggpack_buffer *opb,int maptype){
72 if(maptype==1){
147 codebook *b, oggpack_buffer *opb,int maptype){
192 r[chase*2+bit]= decpack(i,count++,quantvals,b,opb,maptype) |
237 oggpack_buffer *opb,int maptype){
254 s->dec_table,quantvals,s,opb,maptype))return 1;
264 if(_make_words(lengthlist,s->entries,work,quantvals,s,opb,maptype)) goto error_out;
409 int maptype; local
487 if((maptype=oggpack_read(opb,4))>0){
497 switch(maptype){
    [all...]
  /external/ImageMagick/coders/
sun.c 241 maptype,
318 sun_info.maptype=ReadBlobMSBLong(image);
326 if ((sun_info.maptype == RMT_NONE) && (sun_info.maplength != 0))
331 if ((sun_info.maptype != RMT_NONE) && (sun_info.maptype != RMT_EQUAL_RGB) &&
332 (sun_info.maptype != RMT_RAW))
345 if (sun_info.maptype == RMT_NONE)
347 if (sun_info.maptype == RMT_EQUAL_RGB)
352 switch (sun_info.maptype)
762 maptype,
236 maptype, member in struct:_SUNInfo
754 maptype, member in struct:_SUNInfo
    [all...]
  /external/libvorbis/lib/
codebook.h 42 int maptype; /* 0=none member in struct:static_codebook
codebook.c 97 oggpack_write(opb,c->maptype,4);
98 switch(c->maptype){
119 switch(c->maptype){
214 switch((s->maptype=oggpack_read(opb,4))){
230 switch(s->maptype){
sharedbook.c 198 if(b->maptype==1 || b->maptype==2){
204 /* maptype 1 and 2 both use a quantized value vector, but
206 switch(b->maptype){
res0.c 240 if(ci->book_param[info->booklist[j]]->maptype==0)goto errout;
336 /* assumes integer/centered encoder codebook maptype 1 no more than dim 8 */
358 /* assumes integer/centered encoder codebook maptype 1 no more than dim 8 */
  /external/libvorbis/vq/
localcodebook.h 42 int maptype; /* 0=none member in struct:static_codebook
bookutil.c 34 /* assumes integer/centered encoder codebook maptype 1 no more than dim 8 */
53 /* assumes integer/centered encoder codebook maptype 1 no more than dim 8 */
259 &(c->maptype),&(c->q_min),&(c->q_delta),&(c->q_quant),
265 switch(c->maptype){
445 long vals=(c->maptype==1?_book_maptype1_quantvals(c):c->entries*c->dim);
470 c->maptype,c->q_min,c->q_delta,c->q_quant,c->q_sequencep);
distribution.c 66 switch(c->maptype){
90 switch(c->maptype){
latticebuild.c 108 c.maptype=1;
latticetune.c 76 if(c->maptype!=1){
  /prebuilts/go/darwin-x86/src/runtime/
hashmap_fast.go 12 func mapaccess1_fast32(t *maptype, h *hmap, key uint32) unsafe.Pointer {
61 func mapaccess2_fast32(t *maptype, h *hmap, key uint32) (unsafe.Pointer, bool) {
110 func mapaccess1_fast64(t *maptype, h *hmap, key uint64) unsafe.Pointer {
159 func mapaccess2_fast64(t *maptype, h *hmap, key uint64) (unsafe.Pointer, bool) {
208 func mapaccess1_faststr(t *maptype, h *hmap, ky string) unsafe.Pointer {
317 func mapaccess2_faststr(t *maptype, h *hmap, ky string) (unsafe.Pointer, bool) {
hashmap.go 150 t *maptype
169 func (b *bmap) overflow(t *maptype) *bmap {
199 func (h *hmap) setoverflow(t *maptype, b, ovf *bmap) {
222 func makemap(t *maptype, hint int64, h *hmap, bucket unsafe.Pointer) *hmap {
305 func mapaccess1(t *maptype, h *hmap, key unsafe.Pointer) unsafe.Pointer {
363 func mapaccess2(t *maptype, h *hmap, key unsafe.Pointer) (unsafe.Pointer, bool) {
422 func mapaccessK(t *maptype, h *hmap, key unsafe.Pointer) (unsafe.Pointer, unsafe.Pointer) {
468 func mapaccess1_fat(t *maptype, h *hmap, key, zero unsafe.Pointer) unsafe.Pointer {
476 func mapaccess2_fat(t *maptype, h *hmap, key, zero unsafe.Pointer) (unsafe.Pointer, bool) {
485 func mapassign(t *maptype, h *hmap, key unsafe.Pointer) unsafe.Pointer
    [all...]
type.go 96 maptype
348 type maptype struct { type
621 mt := (*maptype)(unsafe.Pointer(t))
622 mv := (*maptype)(unsafe.Pointer(v))
  /prebuilts/go/linux-x86/src/runtime/
hashmap_fast.go 12 func mapaccess1_fast32(t *maptype, h *hmap, key uint32) unsafe.Pointer {
61 func mapaccess2_fast32(t *maptype, h *hmap, key uint32) (unsafe.Pointer, bool) {
110 func mapaccess1_fast64(t *maptype, h *hmap, key uint64) unsafe.Pointer {
159 func mapaccess2_fast64(t *maptype, h *hmap, key uint64) (unsafe.Pointer, bool) {
208 func mapaccess1_faststr(t *maptype, h *hmap, ky string) unsafe.Pointer {
317 func mapaccess2_faststr(t *maptype, h *hmap, ky string) (unsafe.Pointer, bool) {
hashmap.go 150 t *maptype
169 func (b *bmap) overflow(t *maptype) *bmap {
199 func (h *hmap) setoverflow(t *maptype, b, ovf *bmap) {
222 func makemap(t *maptype, hint int64, h *hmap, bucket unsafe.Pointer) *hmap {
305 func mapaccess1(t *maptype, h *hmap, key unsafe.Pointer) unsafe.Pointer {
363 func mapaccess2(t *maptype, h *hmap, key unsafe.Pointer) (unsafe.Pointer, bool) {
422 func mapaccessK(t *maptype, h *hmap, key unsafe.Pointer) (unsafe.Pointer, unsafe.Pointer) {
468 func mapaccess1_fat(t *maptype, h *hmap, key, zero unsafe.Pointer) unsafe.Pointer {
476 func mapaccess2_fat(t *maptype, h *hmap, key, zero unsafe.Pointer) (unsafe.Pointer, bool) {
485 func mapassign(t *maptype, h *hmap, key unsafe.Pointer) unsafe.Pointer
    [all...]
type.go 96 maptype
348 type maptype struct { type
621 mt := (*maptype)(unsafe.Pointer(t))
622 mv := (*maptype)(unsafe.Pointer(v))
  /external/iptables/libiptc/
libiptc.c 87 } maptype; member in struct:counter_map
830 h->chain_iterator_cur->counter_map.maptype =
1004 r->counter_map.maptype = COUNTER_MAP_NORMAL_MAP;
    [all...]
  /external/libvorbis/doc/
08-residue.tex 236 [residue_books] without a value mapping (maptype equals zero) renders
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
walk.go 1152 // Replace m[k] with *map{access1,assign}(maptype, m, &k)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
walk.go 1152 // Replace m[k] with *map{access1,assign}(maptype, m, &k)
    [all...]

Completed in 643 milliseconds