/third_party/toybox/toys/other/ |
D | bzcat.c | 110 static unsigned int get_bits(struct bunzip_data *bd, char bits_wanted) in get_bits() argument 116 while (bd->inbufBitCount < bits_wanted) { in get_bits() 119 if (bd->inbufPos == bd->inbufCount) { in get_bits() 120 if (0 >= (bd->inbufCount = read(bd->in_fd, bd->inbuf, IOBUF_SIZE))) in get_bits() 122 bd->inbufPos = 0; in get_bits() 126 if (bd->inbufBitCount>=24) { in get_bits() 127 bits = bd->inbufBits&((1<<bd->inbufBitCount)-1); in get_bits() 128 bits_wanted -= bd->inbufBitCount; in get_bits() 130 bd->inbufBitCount = 0; in get_bits() 134 bd->inbufBits = (bd->inbufBits<<8) | bd->inbuf[bd->inbufPos++]; in get_bits() [all …]
|
/third_party/skia/third_party/externals/imgui/backends/ |
D | imgui_impl_dx9.cpp | 76 ImGui_ImplDX9_Data* bd = ImGui_ImplDX9_GetBackendData(); in ImGui_ImplDX9_SetupRenderState() local 85 bd->pd3dDevice->SetViewport(&vp); in ImGui_ImplDX9_SetupRenderState() 88 bd->pd3dDevice->SetPixelShader(NULL); in ImGui_ImplDX9_SetupRenderState() 89 bd->pd3dDevice->SetVertexShader(NULL); in ImGui_ImplDX9_SetupRenderState() 90 bd->pd3dDevice->SetRenderState(D3DRS_FILLMODE, D3DFILL_SOLID); in ImGui_ImplDX9_SetupRenderState() 91 bd->pd3dDevice->SetRenderState(D3DRS_SHADEMODE, D3DSHADE_GOURAUD); in ImGui_ImplDX9_SetupRenderState() 92 bd->pd3dDevice->SetRenderState(D3DRS_ZWRITEENABLE, FALSE); in ImGui_ImplDX9_SetupRenderState() 93 bd->pd3dDevice->SetRenderState(D3DRS_ALPHATESTENABLE, FALSE); in ImGui_ImplDX9_SetupRenderState() 94 bd->pd3dDevice->SetRenderState(D3DRS_CULLMODE, D3DCULL_NONE); in ImGui_ImplDX9_SetupRenderState() 95 bd->pd3dDevice->SetRenderState(D3DRS_ZENABLE, FALSE); in ImGui_ImplDX9_SetupRenderState() [all …]
|
D | imgui_impl_glfw.cpp | 120 ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData(); in ImGui_ImplGlfw_MouseButtonCallback() local 121 if (bd->PrevUserCallbackMousebutton != NULL && window == bd->Window) in ImGui_ImplGlfw_MouseButtonCallback() 122 bd->PrevUserCallbackMousebutton(window, button, action, mods); in ImGui_ImplGlfw_MouseButtonCallback() 124 if (action == GLFW_PRESS && button >= 0 && button < IM_ARRAYSIZE(bd->MouseJustPressed)) in ImGui_ImplGlfw_MouseButtonCallback() 125 bd->MouseJustPressed[button] = true; in ImGui_ImplGlfw_MouseButtonCallback() 130 ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData(); in ImGui_ImplGlfw_ScrollCallback() local 131 if (bd->PrevUserCallbackScroll != NULL && window == bd->Window) in ImGui_ImplGlfw_ScrollCallback() 132 bd->PrevUserCallbackScroll(window, xoffset, yoffset); in ImGui_ImplGlfw_ScrollCallback() 141 ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData(); in ImGui_ImplGlfw_KeyCallback() local 142 if (bd->PrevUserCallbackKey != NULL && window == bd->Window) in ImGui_ImplGlfw_KeyCallback() [all …]
|
D | imgui_impl_dx10.cpp | 80 ImGui_ImplDX10_Data* bd = ImGui_ImplDX10_GetBackendData(); in ImGui_ImplDX10_SetupRenderState() local 95 ctx->IASetInputLayout(bd->pInputLayout); in ImGui_ImplDX10_SetupRenderState() 96 ctx->IASetVertexBuffers(0, 1, &bd->pVB, &stride, &offset); in ImGui_ImplDX10_SetupRenderState() 97 …ctx->IASetIndexBuffer(bd->pIB, sizeof(ImDrawIdx) == 2 ? DXGI_FORMAT_R16_UINT : DXGI_FORMAT_R32_UIN… in ImGui_ImplDX10_SetupRenderState() 99 ctx->VSSetShader(bd->pVertexShader); in ImGui_ImplDX10_SetupRenderState() 100 ctx->VSSetConstantBuffers(0, 1, &bd->pVertexConstantBuffer); in ImGui_ImplDX10_SetupRenderState() 101 ctx->PSSetShader(bd->pPixelShader); in ImGui_ImplDX10_SetupRenderState() 102 ctx->PSSetSamplers(0, 1, &bd->pFontSampler); in ImGui_ImplDX10_SetupRenderState() 107 ctx->OMSetBlendState(bd->pBlendState, blend_factor, 0xffffffff); in ImGui_ImplDX10_SetupRenderState() 108 ctx->OMSetDepthStencilState(bd->pDepthStencilState, 0); in ImGui_ImplDX10_SetupRenderState() [all …]
|
D | imgui_impl_dx11.cpp | 81 ImGui_ImplDX11_Data* bd = ImGui_ImplDX11_GetBackendData(); in ImGui_ImplDX11_SetupRenderState() local 96 ctx->IASetInputLayout(bd->pInputLayout); in ImGui_ImplDX11_SetupRenderState() 97 ctx->IASetVertexBuffers(0, 1, &bd->pVB, &stride, &offset); in ImGui_ImplDX11_SetupRenderState() 98 …ctx->IASetIndexBuffer(bd->pIB, sizeof(ImDrawIdx) == 2 ? DXGI_FORMAT_R16_UINT : DXGI_FORMAT_R32_UIN… in ImGui_ImplDX11_SetupRenderState() 100 ctx->VSSetShader(bd->pVertexShader, NULL, 0); in ImGui_ImplDX11_SetupRenderState() 101 ctx->VSSetConstantBuffers(0, 1, &bd->pVertexConstantBuffer); in ImGui_ImplDX11_SetupRenderState() 102 ctx->PSSetShader(bd->pPixelShader, NULL, 0); in ImGui_ImplDX11_SetupRenderState() 103 ctx->PSSetSamplers(0, 1, &bd->pFontSampler); in ImGui_ImplDX11_SetupRenderState() 111 ctx->OMSetBlendState(bd->pBlendState, blend_factor, 0xffffffff); in ImGui_ImplDX11_SetupRenderState() 112 ctx->OMSetDepthStencilState(bd->pDepthStencilState, 0); in ImGui_ImplDX11_SetupRenderState() [all …]
|
D | imgui_impl_opengl3.cpp | 205 ImGui_ImplOpenGL3_Data* bd = IM_NEW(ImGui_ImplOpenGL3_Data)(); in ImGui_ImplOpenGL3_Init() local 206 io.BackendRendererUserData = (void*)bd; in ImGui_ImplOpenGL3_Init() 221 bd->GlVersion = (GLuint)(major * 100 + minor * 10); in ImGui_ImplOpenGL3_Init() 223 bd->GlVersion = 200; // GLES 2 in ImGui_ImplOpenGL3_Init() 227 if (bd->GlVersion >= 320) in ImGui_ImplOpenGL3_Init() 245 IM_ASSERT((int)strlen(glsl_version) + 2 < IM_ARRAYSIZE(bd->GlslVersionString)); in ImGui_ImplOpenGL3_Init() 246 strcpy(bd->GlslVersionString, glsl_version); in ImGui_ImplOpenGL3_Init() 247 strcat(bd->GlslVersionString, "\n"); in ImGui_ImplOpenGL3_Init() 255 bd->HasClipOrigin = (bd->GlVersion >= 450); in ImGui_ImplOpenGL3_Init() 263 bd->HasClipOrigin = true; in ImGui_ImplOpenGL3_Init() [all …]
|
D | imgui_impl_sdl.cpp | 96 ImGui_ImplSDL2_Data* bd = ImGui_ImplSDL2_GetBackendData(); in ImGui_ImplSDL2_GetClipboardText() local 97 if (bd->ClipboardTextData) in ImGui_ImplSDL2_GetClipboardText() 98 SDL_free(bd->ClipboardTextData); in ImGui_ImplSDL2_GetClipboardText() 99 bd->ClipboardTextData = SDL_GetClipboardText(); in ImGui_ImplSDL2_GetClipboardText() 100 return bd->ClipboardTextData; in ImGui_ImplSDL2_GetClipboardText() 116 ImGui_ImplSDL2_Data* bd = ImGui_ImplSDL2_GetBackendData(); in ImGui_ImplSDL2_ProcessEvent() local 130 if (event->button.button == SDL_BUTTON_LEFT) { bd->MousePressed[0] = true; } in ImGui_ImplSDL2_ProcessEvent() 131 if (event->button.button == SDL_BUTTON_RIGHT) { bd->MousePressed[1] = true; } in ImGui_ImplSDL2_ProcessEvent() 132 if (event->button.button == SDL_BUTTON_MIDDLE) { bd->MousePressed[2] = true; } in ImGui_ImplSDL2_ProcessEvent() 185 ImGui_ImplSDL2_Data* bd = IM_NEW(ImGui_ImplSDL2_Data)(); in ImGui_ImplSDL2_Init() local [all …]
|
/third_party/mesa3d/src/intel/tools/tests/gen7.5/ |
D | math.expected | 1 38 01 60 04 bd 73 21 23 00 03 60 00 04 00 6e 00 2 38 00 60 01 bd 73 a0 20 80 00 8d 00 00 00 8d 00 3 38 00 80 01 bd 73 40 21 00 01 8d 00 00 00 8d 00 5 38 01 60 01 bd 73 67 21 44 00 0a 00 04 00 6e 00 6 38 00 60 04 bd 73 20 21 00 01 8d 00 00 00 8d 00 7 38 00 80 04 bd 73 e0 21 a0 01 8d 00 00 00 8d 00 8 38 00 60 0a bd 77 80 22 c0 01 8d 00 80 02 00 00 9 38 00 80 0a bd 77 40 23 00 03 8d 00 80 03 00 00 12 38 01 60 0a bd 77 c1 21 a0 01 60 00 80 01 60 00 13 38 00 60 02 bd 73 e0 20 c0 00 8d 00 00 00 8d 00 [all …]
|
D | mul.expected | 1 41 01 60 00 bd 77 a1 25 ba 00 0a 00 ba 00 0a 00 2 41 01 60 00 bd 7f 4f 22 24 02 6e 00 00 00 00 3f 4 41 00 60 00 bd 77 e0 20 e0 04 8d 00 84 00 00 00 5 41 00 80 00 bd 77 60 22 a0 04 8d 00 c4 00 00 00 9 41 00 60 00 bd 7f e0 20 a0 00 8d 00 00 00 80 3e 13 41 00 80 00 bd 7f 40 29 a0 04 8d 00 00 00 80 3e 16 41 01 60 80 bd 77 67 22 e4 01 6a 00 40 02 60 00 17 41 05 60 00 bd 7f 83 2e c4 00 65 00 00 00 00 3f 18 41 00 60 80 bd 77 40 20 c0 00 8d 00 a0 00 8d 00 19 41 00 80 80 bd 77 40 20 80 01 8d 00 40 01 8d 00 [all …]
|
D | mov.expected | 2 01 01 60 80 bd 03 8f 2e 84 00 6e 00 00 00 00 00 3 01 01 60 00 bd 03 48 2e a0 00 60 00 00 00 00 00 5 01 02 40 00 bd 03 40 2e 4c 00 87 00 00 00 00 00 7 01 00 60 00 bd 00 a0 2f 20 41 8d 00 00 00 00 00 9 01 00 80 00 bd 00 40 2f e0 41 8d 00 00 00 00 00 15 01 00 60 00 bd 03 80 2f 40 00 00 00 00 00 00 00 16 01 00 80 00 bd 03 00 2f 40 00 00 00 00 00 00 00 35 01 01 60 00 bd 00 2f 22 e4 41 6e 00 00 00 00 00 52 01 10 60 00 bd 03 e0 22 c0 00 00 00 00 00 00 00 56 01 05 60 00 bd 00 81 2e 20 41 60 00 00 00 00 00 [all …]
|
D | add.expected | 1 40 00 60 00 bd 1c 80 2f 20 01 8d 00 01 00 00 00 2 40 00 80 00 bd 1c 00 2f e0 01 8d 00 01 00 00 00 6 40 01 60 00 bd 77 2f 22 c4 00 0e 00 f4 00 0e 00 9 40 01 60 00 bd 7f 6f 20 44 02 6e 00 00 00 80 3e 11 40 00 60 00 bd 77 c0 25 40 05 8d 00 90 40 00 00 12 40 00 80 00 bd 77 e0 26 e0 05 8d 00 d0 40 00 00 18 40 00 60 00 bd 7f 00 21 40 00 8d 00 00 00 00 3f 19 40 00 80 00 bd 7f 20 21 40 00 8d 00 00 00 00 3f 22 40 05 60 00 bd 77 63 2e 44 00 05 00 04 01 65 00 24 40 05 60 00 bd 7f 63 2e 44 01 65 00 00 00 00 3f [all …]
|
D | sel.expected | 15 02 00 60 04 bd 7f 00 28 20 01 8d 00 00 00 00 00 17 02 00 80 04 bd 7f 00 23 80 02 8d 00 00 00 00 00 22 02 01 60 04 bd 7f 62 20 e0 00 60 00 00 00 00 00 23 02 01 60 05 bd 7f 61 21 ef 00 6f 00 00 00 00 43 37 02 01 60 85 bd 7f 8f 2e 44 00 6e 00 00 00 00 3f 38 02 01 61 00 bd 77 a7 24 34 20 0a 00 24 00 0a 00 39 02 01 60 05 bd 77 87 28 24 00 0a 00 44 05 6a 00 40 02 01 71 00 bd 7f e7 25 84 25 6a 00 00 00 80 3f 41 02 01 60 04 bd 77 a1 21 2f 00 0f 00 2a 00 0a 00 42 02 00 60 04 bd 77 a0 21 80 01 8d 00 e0 20 8d 00 [all …]
|
/third_party/ffmpeg/libavformat/ |
D | bluray.c | 36 BLURAY *bd; member 63 BlurayContext *bd = h->priv_data; in check_disc_info() local 66 disc_info = bd_get_disc_info(bd->bd); in check_disc_info() 106 BlurayContext *bd = h->priv_data; in bluray_close() local 107 if (bd->bd) { in bluray_close() 108 bd_close(bd->bd); in bluray_close() 116 BlurayContext *bd = h->priv_data; in bluray_open() local 122 bd->bd = bd_open(diskname, NULL); in bluray_open() 123 if (!bd->bd) { in bluray_open() 142 num_title_idx = bd_get_titles(bd->bd, TITLES_RELEVANT, MIN_PLAYLIST_LENGTH); in bluray_open() [all …]
|
/third_party/littlefs/bd/ |
D | lfs_testbd.c | 30 lfs_testbd_t *bd = cfg->context; in lfs_testbd_createcfg() local 31 bd->cfg = bdcfg; in lfs_testbd_createcfg() 34 bd->persist = path; in lfs_testbd_createcfg() 35 bd->power_cycles = bd->cfg->power_cycles; in lfs_testbd_createcfg() 37 if (bd->cfg->erase_cycles) { in lfs_testbd_createcfg() 38 if (bd->cfg->wear_buffer) { in lfs_testbd_createcfg() 39 bd->wear = bd->cfg->wear_buffer; in lfs_testbd_createcfg() 41 bd->wear = lfs_malloc(sizeof(lfs_testbd_wear_t)*cfg->block_count); in lfs_testbd_createcfg() 42 if (!bd->wear) { in lfs_testbd_createcfg() 48 memset(bd->wear, 0, sizeof(lfs_testbd_wear_t) * cfg->block_count); in lfs_testbd_createcfg() [all …]
|
/third_party/libnl/lib/route/link/ |
D | bridge.c | 97 struct bridge_data *bd; in bridge_clone() local 99 if ((bd = bridge_alloc(link))) in bridge_clone() 100 memcpy(bd, data, sizeof(*bd)); in bridge_clone() 102 return bd; in bridge_clone() 133 struct bridge_data *bd = data; in bridge_parse_protinfo() local 142 bd->b_port_state = nla_get_u8(attr); in bridge_parse_protinfo() 143 bd->ce_mask |= BRIDGE_ATTR_PORT_STATE; in bridge_parse_protinfo() 152 bd->b_priv_flags |= PRIV_FLAG_NEW_ATTRS; in bridge_parse_protinfo() 155 bd->b_port_state = nla_get_u8(br_attrs[IFLA_BRPORT_STATE]); in bridge_parse_protinfo() 156 bd->ce_mask |= BRIDGE_ATTR_PORT_STATE; in bridge_parse_protinfo() [all …]
|
/third_party/mesa3d/src/intel/tools/tests/gen7/ |
D | math.expected | 1 38 00 60 01 bd 73 c0 20 40 00 00 00 00 00 8d 00 2 38 00 80 01 bd 73 40 21 40 00 00 00 00 00 8d 00 3 38 01 60 01 bd 73 67 21 44 00 0a 00 04 00 6e 00 4 38 01 60 04 bd 73 a1 21 80 01 60 00 04 00 6e 00 5 38 00 60 04 bd 73 20 21 00 01 8d 00 00 00 8d 00 6 38 00 80 04 bd 73 c0 20 80 00 8d 00 00 00 8d 00 7 38 00 60 0a bd 77 80 22 c0 01 8d 00 80 02 00 00 8 38 00 80 0a bd 77 a0 22 60 02 8d 00 20 03 00 00 10 38 01 60 0a bd 77 c1 21 a0 01 60 00 80 01 60 00 11 38 00 60 02 bd 73 c0 22 80 02 8d 00 00 00 8d 00 [all …]
|
D | mul.expected | 1 41 00 60 00 bd 77 80 2f 80 00 8d 00 c0 00 8d 00 2 41 00 80 00 bd 77 00 2f c0 00 8d 00 40 01 8d 00 3 41 01 60 00 bd 77 a1 25 ba 00 0a 00 ba 00 0a 00 6 41 00 60 00 bd 7f 80 2f 80 00 8d 00 0a d7 23 3c 7 41 00 80 00 bd 7f 00 2f 80 00 8d 00 0a d7 23 3c 8 41 01 60 00 bd 7f 23 21 04 01 65 00 00 00 00 40 9 41 01 60 80 bd 77 67 22 e4 01 6a 00 40 02 60 00 10 41 05 60 00 bd 7f 83 2e c4 00 65 00 00 00 00 3f 11 41 00 60 80 bd 77 40 20 c0 00 8d 00 a0 00 8d 00 12 41 00 80 80 bd 77 00 22 80 01 8d 00 40 01 8d 00 [all …]
|
D | sel.expected | 9 02 00 60 04 bd 7f 00 28 20 01 8d 00 00 00 00 00 11 02 00 80 04 bd 7f 20 22 60 00 8d 00 00 00 00 00 14 02 01 60 04 bd 7f 62 20 e0 00 60 00 00 00 00 00 15 02 01 60 05 bd 7f 61 21 ef 00 6f 00 00 00 00 43 20 02 00 60 04 bd 77 40 20 e0 20 8d 00 00 21 8d 00 21 02 00 80 04 bd 77 40 20 40 21 8d 00 80 21 8d 00 23 02 01 60 85 bd 7f 8f 2e 44 00 6e 00 00 00 00 3f 24 02 01 60 05 bd 77 a1 21 2f 00 0f 00 2a 00 0a 00 25 02 01 60 04 bd 77 a1 21 2f 00 0f 00 2a 00 0a 00 27 02 01 62 00 bd 77 21 22 ba 00 0a 00 ba 40 0a 00 [all …]
|
D | add.expected | 4 40 01 60 00 bd 77 2f 22 c4 00 0e 00 f4 00 0e 00 6 40 00 60 00 bd 77 c0 25 40 05 8d 00 90 40 00 00 7 40 00 80 00 bd 77 60 22 60 01 8d 00 d0 40 00 00 13 40 00 60 00 bd 7f 00 21 a0 00 8d 00 cd cc 4c bd 14 40 00 80 00 bd 7f 80 21 20 01 8d 00 cd cc 4c bd 15 40 01 60 00 bd 7f 81 23 40 07 60 00 00 00 80 bf 17 40 00 60 00 bd 1c 80 2f 60 05 8d 00 01 00 00 00 18 40 00 80 00 bd 1c 00 2f e0 09 8d 00 01 00 00 00 19 40 05 60 00 bd 7f 63 2e 44 01 65 00 00 00 00 3f 23 40 01 60 00 bd 5f 6f 21 40 01 60 00 00 30 40 48 [all …]
|
D | mov.expected | 1 01 00 60 00 bd 00 c0 2f 80 00 8d 00 00 00 00 00 2 01 00 60 00 bd 03 80 2f c0 0f 8d 00 00 00 00 00 3 01 00 80 00 bd 00 80 2f 80 00 8d 00 00 00 00 00 4 01 00 80 00 bd 03 00 2f 80 0f 8d 00 00 00 00 00 8 01 01 60 80 bd 03 8f 2e 84 00 6e 00 00 00 00 00 9 01 01 60 00 bd 03 48 2e a0 00 60 00 00 00 00 00 10 01 02 40 00 bd 03 40 2e 4c 00 87 00 00 00 00 00 37 01 10 60 00 bd 03 e0 22 c0 00 00 00 00 00 00 00 41 01 01 60 00 bd 00 41 21 80 41 60 00 00 00 00 00 43 01 05 60 00 bd 00 81 2e 20 41 60 00 00 00 00 00 [all …]
|
/third_party/mesa3d/src/intel/tools/tests/gen6/ |
D | math.expected | 1 38 00 60 01 bd 73 e0 20 40 01 8d 00 00 00 8d 00 2 38 10 60 01 bd 73 a0 21 40 02 8d 00 00 00 8d 00 3 38 00 60 0a bd 77 00 22 e0 01 8d 00 c0 01 8d 00 4 38 10 60 0a bd 77 00 23 c0 02 8d 00 80 02 8d 00 5 38 00 60 07 bd 73 60 20 40 00 8d 00 00 00 8d 00 6 38 10 60 07 bd 73 a0 20 60 00 8d 00 00 00 8d 00 7 38 00 60 04 bd 73 00 22 e0 01 8d 00 00 00 8d 00 8 38 00 60 02 bd 73 a0 22 80 02 8d 00 00 00 8d 00 9 38 10 60 04 bd 73 60 21 60 00 8d 00 00 00 8d 00 10 38 10 60 02 bd 73 40 20 a0 01 8d 00 00 00 8d 00 [all …]
|
/third_party/exfatprogs/mkfs/ |
D | mkfs.c | 43 struct exfat_blk_dev *bd, struct exfat_user_input *ui) in exfat_setup_boot_sector() argument 57 pbsx->vol_offset = cpu_to_le64(bd->offset / bd->sector_size); in exfat_setup_boot_sector() 58 pbsx->vol_length = cpu_to_le64(bd->size / bd->sector_size); in exfat_setup_boot_sector() 59 pbsx->fat_offset = cpu_to_le32(finfo.fat_byte_off / bd->sector_size); in exfat_setup_boot_sector() 60 pbsx->fat_length = cpu_to_le32(finfo.fat_byte_len / bd->sector_size); in exfat_setup_boot_sector() 61 pbsx->clu_offset = cpu_to_le32(finfo.clu_byte_off / bd->sector_size); in exfat_setup_boot_sector() 66 pbsx->sect_size_bits = bd->sector_size_bits; in exfat_setup_boot_sector() 69 for (i = ui->cluster_size / bd->sector_size; i > 1; i /= 2) in exfat_setup_boot_sector() 102 static int exfat_write_boot_sector(struct exfat_blk_dev *bd, in exfat_write_boot_sector() argument 113 ppbr = malloc(bd->sector_size); in exfat_write_boot_sector() [all …]
|
/third_party/mesa3d/src/intel/tools/tests/gen5/ |
D | cmp.expected | 7 10 01 60 06 bd 7f a1 20 a0 00 60 00 00 00 00 00 9 10 00 60 04 bd 7f c0 20 80 00 8d 00 7d 1d 90 26 10 10 20 80 04 bd 7f 80 21 00 01 8d 00 7d 1d 90 26 15 10 00 60 02 bd 77 a0 20 a0 00 8d 00 c0 04 8d 00 20 10 20 80 02 bd 77 80 22 c0 00 8d 00 c0 41 8d 00 24 10 01 60 05 bd 77 e7 23 0f 01 0f 00 c0 03 60 00 28 10 01 60 02 bd 77 21 22 20 02 60 00 2a 00 0a 00 31 10 00 60 06 bd 7f 40 21 40 00 8d 00 9a 3f 1c 46 32 10 00 60 04 bd 77 20 21 60 40 8d 00 20 01 8d 00 37 10 20 80 06 bd 7f 80 22 80 00 8d 00 9a 3f 1c 46 [all …]
|
/third_party/exfatprogs/lib/ |
D | libexfat.c | 62 void exfat_set_bit(struct exfat_blk_dev *bd, char *bitmap, in exfat_set_bit() argument 67 b = clu & ((bd->sector_size << 3) - 1); in exfat_set_bit() 72 void exfat_clear_bit(struct exfat_blk_dev *bd, char *bitmap, in exfat_clear_bit() argument 77 b = clu & ((bd->sector_size << 3) - 1); in exfat_clear_bit() 127 static void exfat_set_default_cluster_size(struct exfat_blk_dev *bd, in exfat_set_default_cluster_size() argument 130 if (256 * MB >= bd->size) in exfat_set_default_cluster_size() 132 else if (32 * GB >= bd->size) in exfat_set_default_cluster_size() 146 struct exfat_blk_dev *bd) in exfat_get_blk_dev_info() argument 187 bd->dev_fd = fd; in exfat_get_blk_dev_info() 188 bd->offset = blk_dev_offset; in exfat_get_blk_dev_info() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | alsdec.c | 584 static int read_const_block_data(ALSDecContext *ctx, ALSBlockData *bd) in read_const_block_data() argument 590 if (bd->block_length <= 0) in read_const_block_data() 593 *bd->raw_samples = 0; in read_const_block_data() 594 *bd->const_block = get_bits1(gb); // 1 = constant value, 0 = zero block (silence) in read_const_block_data() 595 bd->js_blocks = get_bits1(gb); in read_const_block_data() 600 if (*bd->const_block) { in read_const_block_data() 602 *bd->raw_samples = get_sbits_long(gb, const_val_bits); in read_const_block_data() 606 *bd->const_block = 1; in read_const_block_data() 614 static void decode_const_block_data(ALSDecContext *ctx, ALSBlockData *bd) in decode_const_block_data() argument 616 int smp = bd->block_length - 1; in decode_const_block_data() [all …]
|